summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2020-02-09 19:12:40 +0100
committerFrank LENORMAND <lenormf@gmail.com>2020-02-09 19:12:40 +0100
commit744336ef2bdb7c88f235b2c4772ded318946ee1e (patch)
tree3eafeb8f5e86c07c9b0d9cfd0dccfd6665a68811 /src
parente9cf0f23f23d5d683af7dab8843353be6c0ccda3 (diff)
src: Only remove objects and dependencies for the current target
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index df423929..123ef1d8 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -139,7 +139,7 @@ tags:
ctags -R
clean:
- rm -f .*.o .*.d
+ rm -f $(objects) $(deps)
dist:
@if ! [ -d ../.git ]; then echo "make dist can only run from a git repo"; false; fi