diff options
author | midipix <writeonce@midipix.org> | 2018-12-23 04:27:44 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-24 10:53:15 -0500 |
commit | 4a289f0fd1b62b9102b2a931ed675505f813a32f (patch) | |
tree | 7562342e3059193ebef05b9d3dc77a35d3c2cb8a /Makefile.in | |
parent | b54326bb5e589c9c5def5402572ca3e3b626289c (diff) | |
download | slibtool-4a289f0fd1b62b9102b2a931ed675505f813a32f.tar.bz2 slibtool-4a289f0fd1b62b9102b2a931ed675505f813a32f.tar.xz |
build system: target & native cchost logic: initial clean-up.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in index 888e570..e91fe9e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -258,15 +258,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 - -cchost-native: - $(PROJECT_DIR)/sysinfo/host/host.sh --compiler="$(NATIVE_CC)" + $(CC) $(CFLAGS) -dumpmachine > host.tmp + mv host.tmp host.tag version.tag: $(GIT_REFERENCE_INDEX) $(PROJECT_DIR)/sysinfo/version.sh \ @@ -284,6 +278,7 @@ clean: clean-implib rm -f tree.tag rm -f dirs.tag rm -f host.tag + rm -f host.tmp rm -f version.tag rm -f app.tag rm -f $(SHARED_OBJS) @@ -465,7 +460,7 @@ clean: clean-implib @echo $(CFLAGS) -.PHONY: cchost cchost-native package-app \ +.PHONY: package-app \ all install shared static app \ shared-objs shared-lib \ shared-soname shared-solink \ |