Makefile - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       Makefile (288B)
       ---
            1 .POSIX:
            2 
            3 BINDIR = ../../../bin/
            4 
            5 all: master.a
            6         PATH=$(BINDIR):$$PATH ./chktest.sh
            7 
            8 master.a: mkmaster.sh
            9         @./mkmaster.sh
           10 
           11 tests:
           12         @$(MAKE) |\
           13         grep -v TODO |\
           14         grep FAIL >/dev/null &&\
           15         printf '[FAIL]' || printf '[PASS]'; printf '\tar/execute\n'
           16 
           17 clean:
           18         rm -f *.a test.log
           19         rm -f file*