[Aceunit-commit] SF.net SVN: aceunit: [29] trunk/src/doc/examples/sort/Makefile
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2007-10-07 14:42:33
|
Revision: 29 http://aceunit.svn.sourceforge.net/aceunit/?rev=29&view=rev Author: christianhujer Date: 2007-10-07 07:42:36 -0700 (Sun, 07 Oct 2007) Log Message: ----------- Renamed testExample to runTests. Added runTests to clean. Modified Paths: -------------- trunk/src/doc/examples/sort/Makefile Modified: trunk/src/doc/examples/sort/Makefile =================================================================== --- trunk/src/doc/examples/sort/Makefile 2007-10-07 14:40:32 UTC (rev 28) +++ trunk/src/doc/examples/sort/Makefile 2007-10-07 14:42:36 UTC (rev 29) @@ -1,8 +1,9 @@ ACE_UNIT_PATH=../../../ + all: prepare compile clean: - rm -f AceUnit.c AceUnit.h FullPlainLogger.c AceUnit.jar sortTest.h + rm -f AceUnit.c AceUnit.h FullPlainLogger.c AceUnit.jar sortTest.h runTests prepare: AceUnit.c AceUnit.h FullPlainLogger.c @@ -21,10 +22,10 @@ $(ACE_UNIT_PATH)/java/AceUnit.jar: (cd $(ACE_UNIT_PATH)/java ; ant) -compile: testExample +compile: runTests sortTest.h: AceUnit.jar sortTest.c java -cp AceUnit.jar net.sf.aceunit.GenTest sortTest >sortTest.h -testExample: *.c *.h sortTest.h - gcc -o testExample *.c +runTests: *.c *.h sortTest.h + gcc -o runTests *.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |