1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:27:35 +00:00

Fix "make clean" not deleting app binaries.

This commit is contained in:
Andreas Kling 2019-05-13 14:56:18 +02:00
parent 801d6f572a
commit 852d648912
17 changed files with 17 additions and 17 deletions

View file

@ -22,5 +22,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d