mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05: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:
parent
309f3d26f3
commit
a186c75bd6
@ -98,9 +98,15 @@ ifdef INCLUDE_ALL
|
|||||||
ifdef SUBDIRS-no
|
ifdef SUBDIRS-no
|
||||||
SUBDIRS += $(SUBDIRS-no)
|
SUBDIRS += $(SUBDIRS-no)
|
||||||
endif
|
endif
|
||||||
|
ifdef SUBDIRS-
|
||||||
|
SUBDIRS += $(SUBDIRS-)
|
||||||
|
endif
|
||||||
ifdef OBJS-no
|
ifdef OBJS-no
|
||||||
OBJS += $(OBJS-no)
|
OBJS += $(OBJS-no)
|
||||||
endif
|
endif
|
||||||
|
ifdef OBJS-
|
||||||
|
OBJS += $(OBJS-)
|
||||||
|
endif
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user