"Fossies" - the Fresh Open Source Software Archive

Member "statist-1.4.2/Makefile" (21 Dec 2009, 289 Bytes) of package /linux/privat/old/statist-1.4.2.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 include Makefile.inc
    2 
    3 .POSIX:
    4 
    5 all:
    6 	(cd src; make)
    7 	(cd po; make)
    8 	(cd tests; make)
    9 	(cd doc; make)
   10 
   11 install:
   12 	(cd src; make install)
   13 
   14 uninstall:
   15 	(cd src; make uninstall)
   16 
   17 check:
   18 	(cd src; make)
   19 	(cd tests; make)
   20 
   21 clean:
   22 	(cd src; make clean)
   23 	(cd doc; make clean)
   24 	(cd po; make clean)
   25