summaryrefslogtreecommitdiffhomepage
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:43:28 -0500
commit98092929fca2033abb7e47a301cb4e8e0d439194 (patch)
tree1130a0095fced5c634ab6f5bf0cf5db8169d7231 /Makefile.in
parent9789fb65563eee2bdf2382ab2df98140d9a7434a (diff)
downloadptycon-98092929fca2033abb7e47a301cb4e8e0d439194.tar.bz2
ptycon-98092929fca2033abb7e47a301cb4e8e0d439194.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 \