* FHS
[filters.git] / Makefile
index 7600f973b3355878e5fe9f77d2dbad9baf9a314b..8ecd83304d00d43776e5b7e64ff29b3534b86df8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,27 +2,25 @@
 
 LEX     = flex
 
-ALL     = jive valspeak nyc cockney fin biffa ken aust drawl \
-               kraut newspeak chef mb censor fudd moo buck \
-               jethro b1ff
-OTHER   = ky00te
+ALL     = jethro kraut
+OTHER   = eleet b1ff chef jibberish upside-down
 
 all:   $(OTHER) $(ALL)
 
 install:       $(ALL) $(OTHER)
        install -d $(PREFIX)/usr/games
-       install -s $(ALL) $(OTHER) $(PREFIX)/usr/games/
-       install -d $(PREFIX)/usr/man/man6
-       install -m 0644 filters.6 $(PREFIX)/usr/man/man6
-       cd $(PREFIX)/usr/man/man6 && \
+       install $(ALL) $(OTHER) $(PREFIX)/usr/games/
+       install -d $(PREFIX)/usr/share/man/man6
+       install -m 0644 filters.6 $(PREFIX)/usr/share/man/man6
+       cd $(PREFIX)/usr/share/man/man6 && \
                $(foreach prog,$(ALL) $(OTHER),ln -s filters.6 $(prog).6;)
 
 samples:       $(ALL) $(OTHER)
-       echo $(ALL) $(OTHER) |xargs -n 1 sh makesample.sh
+       -rm -f SAMPLES
+       PATH=. echo $(ALL) $(OTHER) |xargs -n 1 sh makesample.sh
 
 clean:
        $(RM) -f core *.o *~ $(ALL) *.c SAMPLES
-       cd ky00te.dir; make clean       
 
 .SUFFIXES: .l
 
@@ -37,3 +35,7 @@ clean:
 
 .dir:  
        cd $<; make
+
+kraut:
+       cd kraut.dir && lex kraut.l
+       cd kraut.dir && cc kraut.c lex.yy.c -o ../kraut
This page took 0.009983 seconds and 4 git commands to generate.