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:
parent
a7f010ee8a
commit
b0f08ace94
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue