From 787ad7856f5074db4fe805b15bfca61553895de1 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Mon, 19 Dec 2022 03:05:15 +0200 Subject: [PATCH] Makefile: clean-all --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index bc33ff8..af6c7bf 100644 --- a/Makefile +++ b/Makefile @@ -20,12 +20,19 @@ $(bin): $(obj) 3dengfx 3dengfx: $(MAKE) -C src/3dengfx +.PHONY: 3dengfx-clean +3dengfx-clean: + $(MAKE) -C src/3dengfx clean + -include $(obj:.o=.d) .PHONY: clean clean: $(RM) $(obj) $(bin) +.PHONY: cleanall +cleanall: clean 3dengfx-clean cleandep + .PHONY: cleandep cleandep: $(RM) $(obj:.o=.d) -- 1.7.10.4