Merge commit 'flame/master'
[oxy-cursors.git] / Makefile
blob1b801e6c3272c0cb8a71d2b07831558df049f005
1 colors=blue yellow brown grey green violet viorange red purple navy sea_blue emerald hot_orange white black
3 themes: .depend
4 for color in $(colors); do \
5 $(MAKE) -f Makefile.colors COLOR=$$color theme || exit 1; \
6 done
8 tarballs: .depend
9 for color in $(colors); do \
10 $(MAKE) -f Makefile.colors COLOR=$$color || exit 1; \
11 done
13 .depend: $(patsubst %.in,%.dep,$(wildcard configs/*.in))
14 cat $^ > $@
16 configs/%.dep: configs/%.in
17 echo "cursors/\$$(COLOR)/$(notdir $(patsubst %.in,%,$<)): \$$(addprefix pngs/\$$(COLOR)/,$$(cut -d ' ' -f 4 $< | xargs echo))" > $@