diff options
Diffstat (limited to 'abstractions/Makefile')
-rw-r--r-- | abstractions/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/abstractions/Makefile b/abstractions/Makefile index f5a97068..235f98ca 100644 --- a/abstractions/Makefile +++ b/abstractions/Makefile @@ -6,14 +6,17 @@ #
#==============================================================================#
-# these are setup to be overridden by the packages/*/Makefiles
-SRC_ROOT_DIR := $(shell pwd)/..
+CWD := $(shell pwd)
+
+# these are setup to be overridden by the packages/Makefile
+SRC_ROOT_DIR = $(CWD)/..
INSTALL_PREFIX = build
+BUILDLAYOUT_DIR = $(CWD)
# default target
-all: objects applications
+install: objects applications
-include Makefile.dirs
+include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
#==============================================================================#
#
|