1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-26 02:46:13 -04:00

Fix cleanall by including $(SUBDIRS-) and $(OBJS-) when INCLUDE_ALL is set

This is necessary since some CONFIG_* variables can have no value set.
So this is really a workaround.
This commit is contained in:
Jonas Fonseca 2005-12-25 02:15:04 +01:00 committed by Jonas Fonseca
parent 309f3d26f3
commit a186c75bd6

View File

@ -98,9 +98,15 @@ ifdef INCLUDE_ALL
ifdef SUBDIRS-no
SUBDIRS += $(SUBDIRS-no)
endif
ifdef SUBDIRS-
SUBDIRS += $(SUBDIRS-)
endif
ifdef OBJS-no
OBJS += $(OBJS-no)
endif
ifdef OBJS-
OBJS += $(OBJS-)
endif
endif