[Aceunit-commit] SF.net SVN: aceunit:[564] trunk/src/doc/examples/sort/Makefile
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2011-02-14 21:47:15
|
Revision: 564 http://aceunit.svn.sourceforge.net/aceunit/?rev=564&view=rev Author: christianhujer Date: 2011-02-14 21:47:09 +0000 (Mon, 14 Feb 2011) Log Message: ----------- Fix bug: svn sandbox was broken by make clean. Modified Paths: -------------- trunk/src/doc/examples/sort/Makefile Modified: trunk/src/doc/examples/sort/Makefile =================================================================== --- trunk/src/doc/examples/sort/Makefile 2011-02-14 09:44:10 UTC (rev 563) +++ trunk/src/doc/examples/sort/Makefile 2011-02-14 21:47:09 UTC (rev 564) @@ -9,7 +9,7 @@ all: prepare compile clean: - rm -f $(FIXTURE_NAME).h AceUnitMain *.o $(shell grep -Rl '@warning This is a generated file. Do not edit. Your changes will be lost.' --exclude=Makefile .) + rm -f $(FIXTURE_NAME).h AceUnitMain *.o $(shell grep -Rl '@warning This is a generated file. Do not edit. Your changes will be lost.' --include="*.c" --include="*.h" .) test: all ./AceUnitMain This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |