summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-11-23 03:38:48 -0500
committermidipix <writeonce@midipix.org>2017-11-23 15:33:07 -0500
commit3396d5106b1a441e93d4b6351721a7b51caf791f (patch)
tree4ef15b42004ea7c09477fb7a6f2b807158b9fbb7 /Makefile.in
parentaf48ea01fae62e419147b0bf7d952f28919da5bc (diff)
downloadapimagic-3396d5106b1a441e93d4b6351721a7b51caf791f.tar.bz2
apimagic-3396d5106b1a441e93d4b6351721a7b51caf791f.tar.xz
build system: added --cchost support.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index bae3699..b825744 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -8,6 +8,7 @@ AVOID_VERSION = @avoid_version@
BUILD = @build@
HOST = @host@
+CCHOST = @cchost@
TARGET = @target@
ARCH = @arch@
COMPILER = @compiler@
@@ -231,6 +232,9 @@ dirs.tag:
mkdir -p lib
touch dirs.tag
+cchost:
+ $(PROJECT_DIR)/sysinfo/host/host.sh --compiler="$(CC)" --cflags="$(CFLAGS)"
+
host.tag: Makefile
$(PROJECT_DIR)/sysinfo/host/host.sh --compiler="$(CC)" --cflags="$(CFLAGS)"
touch host.tag
@@ -283,6 +287,7 @@ clean: clean-implib
.display-env:
@echo BUILD:' '$(BUILD)
@echo HOST:' '$(HOST)
+ @echo CCHOST:' '$(CCHOST)
@echo TARGET:' '$(TARGET)
@echo ARCH:' '$(ARCH)
@echo COMPILER:' '$(COMPILER)
@@ -409,8 +414,8 @@ clean: clean-implib
@echo $(CFLAGS)
-.PHONY: all install shared static app \
- package-app \
+.PHONY: cchost package-app \
+ all install shared static app \
shared-objs shared-lib \
shared-soname shared-solink \
package-shared-soname package-shared-solink \