Fix build after `make distclean'
This commit is contained in:
parent
5559bc4375
commit
5a941fd04d
1 changed files with 6 additions and 3 deletions
9
Makefile
9
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}
|
||||
|
|
Loading…
Reference in a new issue