diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-13 14:56:18 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-13 14:56:18 +0200 |
commit | 852d648912a9f7acf19584030feb79d555b4d9d6 (patch) | |
tree | a771e6097bb00fb30903d00ad1db7d6329b1134f /Applications/About | |
parent | 801d6f572af8e874e725a53652ba00615238bcfd (diff) | |
download | serenity-852d648912a9f7acf19584030feb79d555b4d9d6.zip |
Fix "make clean" not deleting app binaries.
Diffstat (limited to 'Applications/About')
-rw-r--r-- | Applications/About/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/About/Makefile b/Applications/About/Makefile index 323301360e..c9ab2bf262 100644 --- a/Applications/About/Makefile +++ b/Applications/About/Makefile @@ -18,5 +18,5 @@ $(APP): $(OBJS) -include $(OBJS:%.o=%.d) clean: - @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d + @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d |