Create a clean target for tests2/Makefile
the absence of a clean target in tests2/Makefile make the clean target in the main Makefile fails to complete. This commit create such a target which removes the only file created when tests pass successfully.
This commit is contained in:
@ -97,3 +97,6 @@ all: test
|
|||||||
test: $(TESTS)
|
test: $(TESTS)
|
||||||
|
|
||||||
# vim: set expandtab ts=4 sw=4 sts=4 tw=80 :
|
# vim: set expandtab ts=4 sw=4 sts=4 tw=80 :
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -vf fred.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user