Fix "make clean" not deleting app binaries.

This commit is contained in:
Andreas Kling 2019-05-13 14:56:18 +02:00
commit 852d648912
Notes: sideshowbarker 2024-07-19 14:09:26 +09:00
17 changed files with 17 additions and 17 deletions

View file

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