From 0186d85923f4ef65ebf2270abcfc42a10e876f44 Mon Sep 17 00:00:00 2001 From: Robin Eklind Date: Sat, 25 Apr 2020 17:06:58 +0200 Subject: [PATCH] makefile: run clean on subprojects when invoking `make clean` --- MakefileVC | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MakefileVC b/MakefileVC index 24c0cdc5c..af480a19a 100644 --- a/MakefileVC +++ b/MakefileVC @@ -86,5 +86,8 @@ diablo.res: Diablo.rc clean: @$(RM) -v $(OBJS) vc60.idb vc60.pdb Diablo.pdb Diablo.pch + make -C DiabloUI clean + make -C 3rdParty/Storm clean + make -C 3rdParty/PKWare clean .PHONY: clean all