Don't give special treatement to kraut and scramble
[filters.git] / Makefile
1 LEX = flex
2 BUILD = jethro kraut cockney jive nyc ken ky00te newspeak nethackify scramble
3 OTHER = eleet b1ff chef jibberish upside-down rasterman studly fudd \
4 censor spammer uniencode pirate kenny scottish fanboy LOLCAT
5 CFLAGS = -O2
6 export CFLAGS
7 INSTALL_PROGRAM = install
8
9 # DEB_BUILD_OPTIONS suport, to control binary stripping.
10 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
11 INSTALL_PROGRAM += -s
12 endif
13
14 # And debug building.
15 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
16 CFLAGS += -g
17 endif
18
19 all: $(OTHER) $(BUILD) samples
20
21 install: $(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
30 samples: $(BUILD) $(OTHER)
31 -rm -f SAMPLES
32 PATH=.:$$PATH; export PATH; echo $(BUILD) $(OTHER) | xargs -n 1 sh makesample.sh
33
34 clean:
35 $(RM) -f core *.o *~ $(BUILD) SAMPLES
36 cd ky00te.dir && make clean
37 cd nethackify.dir && make clean
38
39 .SUFFIXES: .l
40
41 .l:
42 $(RM) $*.c
43 $(LEX) -t $< > $*.c
44 $(CC) -o $@ $*.c $(CFLAGS) -lfl
45 $(RM) $*.c
46
47 .SUFFIXES: .dir
48
49 .dir:
50 cd $<; make
51
52 ky00te:
53 cd ky00te.dir && make
54
55 nethackify:
56 cd nethackify.dir && make
57
58 scramble: scramble.c
This page took 0.02163 seconds and 5 git commands to generate.