From 0237507bda3ecd0cebab0eeddc3cfefa4d9b3650 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 7 Jan 2015 11:56:03 -0500 Subject: [PATCH] fixed usage of BUILD_BEFORE which was erroneoulsy being used instead of FIRST_TARGETS and LAST_TARGETS for two items in the top-level makefile. --- makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 72d5303e..cb92faf6 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,9 @@ include variables.def PROJECT = feisty_meow_sources -BUILD_BEFORE = start_make nucleus scripts octopi graphiq webby kona production end_make +FIRST_TARGETS += start_make +BUILD_BEFORE = nucleus scripts octopi graphiq webby kona production +LAST_TARGETS += end_make include rules.def -- 2.34.1