diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 10:47:05 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 10:47:05 +0000 |
commit | afc61c6e8e3f9d0065c2328d4a01227cfa71ba5d (patch) | |
tree | 3bd6cea1b52905b42bb76eadb83f2b76c037799a /package/Makefile.in | |
parent | a665ed34960bf1423cba303276161bf44a9851f4 (diff) |
- adjust infrastructure for new kconfig
Diffstat (limited to 'package/Makefile.in')
-rw-r--r-- | package/Makefile.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 6efcbd87d..470c45d19 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -48,30 +48,6 @@ TARGET_LDFLAGS=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib endif ######################################################################### -ifndef HOSTAR -HOSTAR:=ar -endif -ifndef HOSTAS -HOSTAS:=as -endif -ifndef HOSTCC -HOSTCC:=gcc -endif -ifndef HOSTCXX -HOSTCXX:=g++ -endif -ifndef HOSTLD -HOSTLD:=ld -endif -HOSTAR:=$(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar) -HOSTAS:=$(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as) -HOSTCC:=$(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc) -HOSTCXX:=$(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++) -HOSTLD:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld) -ifndef CFLAGS_FOR_BUILD -CFLAGS_FOR_BUILD:="-g -O2" -endif - BASE_DIR:=$(shell pwd) |