diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-21 17:14:56 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-21 17:14:56 +0000 |
commit | 1e3c369df8a895f18ceaaa31e8dc09a5c46a422d (patch) | |
tree | 70880316440fc6abe86291debdf89c2da1957f73 /project/Makefile.in | |
parent | b978dbdc727d119abac37fe10cfd3b488d3d0292 (diff) | |
download | buildroot-novena-1e3c369df8a895f18ceaaa31e8dc09a5c46a422d.tar.gz buildroot-novena-1e3c369df8a895f18ceaaa31e8dc09a5c46a422d.zip |
- move the PROJECT variable setting to a more sensible place
Diffstat (limited to 'project/Makefile.in')
-rw-r--r-- | project/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/project/Makefile.in b/project/Makefile.in index b90f31267..2e8ee1b22 100644 --- a/project/Makefile.in +++ b/project/Makefile.in @@ -4,3 +4,9 @@ TARGET_HOSTNAME:=$(strip $(subst ",,$(BR2_HOSTNAME))) #")) BANNER:=$(strip $(subst ",,$(BR2_BANNER))) #")) + +# All configurable packages (like Busybox,Linux etc) should be built +# in PROJECT_BUILD_DIR +PROJECT_BUILD_DIR:=$(BASE_DIR)/$(TOPDIR_PREFIX)project_build_$(ARCH)$(ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX)/$(PROJECT) +BINARIES_DIR:=$(BASE_DIR)/binaries/$(PROJECT) +TARGET_DIR:=$(PROJECT_BUILD_DIR)/root |