- Add -D__MAKEDEPEND__ to DEPEND_CFLAGS - Deal less verbose with (initially) missing depend.mk
11 lines
205 B
Makefile
11 lines
205 B
Makefile
DEPEND_CFLAGS += -D__MAKEDEPEND__
|
|
DEPEND_CPPFLAGS += -D__MAKEDEPEND__
|
|
all.done: depend.mk
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
ifneq ($(MAKECMDGOALS),distclean)
|
|
-include depend.mk
|
|
endif
|
|
endif
|
|
|
|
clean: depclean
|