diff options
author | midipix <writeonce@midipix.org> | 2021-04-10 20:24:58 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 20:24:58 +0000 |
commit | 75733a7f34d2620e754f0a6cfc26c6c9b2e5f814 (patch) | |
tree | 9d8b9e14a5a522e82a58e90dfca0e727158b7cb9 /sofort/core/_infer | |
parent | 0df1489d275c76477e0ec815a539d05759e94e72 (diff) | |
download | slibtool-75733a7f34d2620e754f0a6cfc26c6c9b2e5f814.tar.bz2 slibtool-75733a7f34d2620e754f0a6cfc26c6c9b2e5f814.tar.xz |
build system: posix make support: handle out-of-tree builds in posix make mode.
Diffstat (limited to 'sofort/core/_infer')
-rw-r--r-- | sofort/core/_infer/infer_modern.mk | 3 | ||||
-rw-r--r-- | sofort/core/_infer/infer_posix.mk | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sofort/core/_infer/infer_modern.mk b/sofort/core/_infer/infer_modern.mk index e7db2a6..aaf3361 100644 --- a/sofort/core/_infer/infer_modern.mk +++ b/sofort/core/_infer/infer_modern.mk @@ -17,3 +17,6 @@ lib/%$(OS_ARCHIVE_EXT): mkdir -p lib rm -f $@ $(AR) rcs $@ $^ + +srcs.tag: + touch $@ diff --git a/sofort/core/_infer/infer_posix.mk b/sofort/core/_infer/infer_posix.mk index 3938325..ae990e8 100644 --- a/sofort/core/_infer/infer_posix.mk +++ b/sofort/core/_infer/infer_posix.mk @@ -17,3 +17,11 @@ $(STATIC_LIB): mkdir -p lib rm -f $@ $(AR) rcs $@ $(STATIC_OBJS) + +srcs.tag: tree.tag + +srcs.tag: + $(PROJECT_DIR)/sofort/tools/srctree.sh \ + --srctree=$(SOURCE_DIR) -- \ + $(COMMON_SRCS) $(APP_SRCS) + touch $@ |