diff options
author | lloyd <[email protected]> | 2014-01-10 03:41:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-10 03:41:28 +0000 |
commit | 9efa3be92442afb3d0b69890a36c7f122df18eda (patch) | |
tree | 7b8e32e10e12639d4bef6d59d6c6a2ca2de2e181 /src/build-data/makefile | |
parent | 7b39108f481c9c8f6de8a5cd1e2835fd622d7b7d (diff) |
Remove test in clean target
Diffstat (limited to 'src/build-data/makefile')
-rw-r--r-- | src/build-data/makefile/gmake.in | 2 | ||||
-rw-r--r-- | src/build-data/makefile/nmake.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/build-data/makefile/gmake.in b/src/build-data/makefile/gmake.in index bcaa5b9a0..2bdf34e4a 100644 --- a/src/build-data/makefile/gmake.in +++ b/src/build-data/makefile/gmake.in @@ -96,7 +96,7 @@ docs: clean: $(RM_R) %{build_dir}/lib/* %{build_dir}/tests/* - $(RM) $(LIBRARIES) $(SYMLINK) $(SONAME) $(APP) + $(RM) $(LIBRARIES) $(SYMLINK) $(SONAME) $(APP) $(TEST) distclean: clean $(RM_R) %{build_dir} diff --git a/src/build-data/makefile/nmake.in b/src/build-data/makefile/nmake.in index 413428803..1ebba3c9f 100644 --- a/src/build-data/makefile/nmake.in +++ b/src/build-data/makefile/nmake.in @@ -79,7 +79,7 @@ docs: clean: $(RM) %{build_dir}\lib\* %{build_dir}\tests\* $(RM) *.manifest *.exp *.dll - $(RM) $(LIBRARIES) $(APP) + $(RM) $(LIBRARIES) $(APP) $(TEST) distclean: clean $(RM_R) %{build_dir} |