From 9bd9b48e519008e7ff8b77bdf8b3d6277a3e697b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 9 Apr 2018 08:07:50 +0200 Subject: [PATCH] fix order of make targets --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af3c92843..31eacd39c 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,6 @@ V ?= 2 # Platform PLATFORM ?= $(shell uname) -include Makefile.help include Makefile.config ifeq ($(WITH_SRC),1) @@ -176,3 +175,4 @@ escape = $(shell echo $1 | tr a-z- A-Z_ | tr -dc ' A-Z0-9_') include $(wildcard $(BUILDDIR)/**/*.d) include $(patsubst %,$(SRCDIR)/%/Makefile.inc,$(MODULES)) +include Makefile.help