]> pd.if.org Git - pdclib/blobdiff - Makefile
Added target 'find' for convenience.
[pdclib] / Makefile
index 24e30137db320ab72079173e7c070ad6d0364244..81a353ba0e56d1c42b59ad09eb0c4afbdcddc8af 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,12 +23,12 @@ pdclib.a: $(OBJFILES)
        @ar r pdclib.a $?
 
 test: testdrivers
-       -@rc=0; count=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking PDCLib): $$count  Tests failed: $$rc"
+       -@rc=0; count=0; for file in $(TSTFILES); do echo " TST $$file"; ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking PDCLib): $$count  Tests failed: $$rc"
 
 testdrivers: $(TSTFILES)
 
 regtest: regtestdrivers
-       -@rc=0; count=0; for file in $(REGFILES); do ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking system libc): $$count  Tests failed: $$rc"
+       -@rc=0; count=0; for file in $(REGFILES); do echo " RTST        $$file"; ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking system libc): $$count  Tests failed: $$rc"
 
 regtestdrivers: $(REGFILES)
 
@@ -46,11 +46,17 @@ todolist:
 fixmelist:
        -@for file in $(ALLFILES); do grep -H FIXME $$file; done; true
 
+find:
+       @find functions/ includes/ internals/ platform/ -name "*\.[ch]" -type f | xargs grep $$FIND
+
 %.o: %.c Makefile
+       @echo " CC      $@"
        @$(CC) $(CFLAGS) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@
 
 %.t: %.c Makefile pdclib.a
+       @echo " CC      $@"
        @$(CC) $(CFLAGS) -DTEST -std=c99 -I./includes -I./internals $< pdclib.a -o $@
 
 %.r: %.c Makefile
+       @echo " CC      $@"
        @$(CC) $(CFLAGS) -DTEST -DREGTEST -std=c99 -I./internals $< -o $@