filters (2.49) unstable; urgency=low
[filters.git] / Makefile
CommitLineData
39fd5458
JH
1LEX = flex
2BUILD = jethro kraut cockney jive nyc ken ky00te newspeak nethackify scramble
3OTHER = eleet b1ff chef jibberish upside-down rasterman studly fudd \
4 censor spammer uniencode pirate kenny scottish fanboy
5CFLAGS = -O2 -lfl
6export CFLAGS
7INSTALL_PROGRAM = install
8
9# DEB_BUILD_OPTIONS suport, to control binary stripping.
10ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
11INSTALL_PROGRAM += -s
12endif
13
14# And debug building.
15ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
16CFLAGS += -g
17endif
18
19all: $(OTHER) $(BUILD) samples
20
21install: $(BUILD) $(OTHER)
22 install -d $(DESTDIR)/usr/games
23 $(INSTALL_PROGRAM) $(BUILD) $(DESTDIR)/usr/games/
24 install $(OTHER) $(DESTDIR)/usr/games/
25 install -d $(DESTDIR)/usr/share/man/man6
26 install -m 0644 filters.6 $(DESTDIR)/usr/share/man/man6
27 cd $(DESTDIR)/usr/share/man/man6 && \
28 $(foreach prog,$(BUILD) $(OTHER),ln -s filters.6 $(prog).6;)
29
30samples: $(BUILD) $(OTHER)
31 -rm -f SAMPLES
32 PATH=.:$$PATH; export PATH; echo $(BUILD) $(OTHER) | xargs -n 1 sh makesample.sh
33
34clean:
35 $(RM) -f core *.o *~ $(BUILD) SAMPLES
36 cd ky00te.dir && make clean
37 rm -f kraut.dir/lex.yy.c
38 cd nethackify.dir && make clean
39 cd scramble.dir && make clean
40
41.SUFFIXES: .l
42
43.l:
44 $(RM) $*.c
45 $(LEX) -t $< > $*.c
46 $(CC) -o $@ $*.c $(CFLAGS)
47 $(RM) $*.c
48
49.SUFFIXES: .dir
50
51.dir:
52 cd $<; make
53
54ky00te:
55 cd ky00te.dir && make
56
57kraut:
58 cd kraut.dir && lex kraut.l
59 cd kraut.dir && $(CC) kraut.c lex.yy.c -o ../kraut
60
61nethackify:
62 cd nethackify.dir && make
63
64scramble:
65 cd scramble.dir && make
This page took 0.013618 seconds and 4 git commands to generate.