]> Dogcows Code - chaz/yoink/blob - data/rules.mk
need the configure script
[chaz/yoink] / data / rules.mk
1
2 #########################
3 sp := $(sp).x
4 dirstack_$(sp) := $(d)
5 d := $(dir)
6 #########################
7
8 #
9 # Define rules and targets for data files.
10 #
11
12 ASSETS_$(d) := $(shell find $(d) -name "*.lua" \
13 -o -name "*.ogg" \
14 -o -name "*.png" | sed -e 's=^$(d)\(.*\)/.*=&;\1=g') $(d)/yoinkrc;
15
16 DATAFILES := $(DATAFILES) $(ASSETS_$(d))
17
18 # TODO: Also need to install yoink.desktop and the pixmap.
19
20
21 #######################
22 -include $(DEPS_$(d))
23 d := $(dirstack_$(sp))
24 sp := $(basename $(sp))
25 #######################
26
This page took 0.028316 seconds and 4 git commands to generate.