From 5a941fd04d6595bef3f87f5b7b60c3862b9bb794 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Wed, 17 Nov 2021 04:16:14 +0500 Subject: [PATCH] Fix build after `make distclean' --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 89a2072..e36a97e 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,12 @@ include config/1-generated.mk include config/2-conditionals.mk include config/3-defvars.mk -CONFIGMKS = \ +CONFIGMKS_TO_REMOVE = \ config/1-generated.mk \ - config/2-conditionals.mk \ + config/2-conditionals.mk + +CONFIGMKS = \ + $(CONFIGMKS_TO_REMOVE) \ config/3-defvars.mk VERSION = 6.2 @@ -60,7 +63,7 @@ clean: rm -f polytreewm ${OBJ} distclean: clean - rm -f $(CONFIGMKS) + rm -f $(CONFIGMKS_TO_REMOVE) install: all mkdir -p ${DESTDIR}${BINDIR}