diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-06-21 07:41:41 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-06-21 07:41:41 +0200 |
commit | 90f603e2be40d996c421ae8e95464e38911eabaf (patch) | |
tree | a3a8aa942a9acf078eed1333404de22aaa106219 /GNUmakefile | |
parent | f9292cf478867567f80ad270d4351e9a48ef4d06 (diff) |
s/TOPDIR/ADK_TOPDIR/
to avoid namespace collisions in some packages, rename TOPDIR.
Sorry you need to make cleandir && make prereq && make
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index b5dd3eea3..ab512a2af 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,14 +1,14 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. -TOPDIR:= $(shell pwd) -PWD:= ${TOPDIR} +ADK_TOPDIR:= $(shell pwd) +PWD:= ${ADK_TOPDIR} include Makefile.inc ifneq (${package},) subdir:= package/${package} -_subdir_dep:= ${TOPDIR}/.config +_subdir_dep:= ${ADK_TOPDIR}/.config endif ifneq (${subdir},) @@ -19,7 +19,7 @@ _subdir: ${_subdir_dep} echo >&2 Error: you must build with “umask 022”, sorry.; \ exit 1; \ fi - cd ${subdir} && TOPDIR=${TOPDIR} DEVELOPER=1 \ + cd ${subdir} && ADK_TOPDIR=${ADK_TOPDIR} DEVELOPER=1 \ make VERBOSE=1 ${MAKEFLAGS} ${MAKECMDGOALS} include prereq.mk |