summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-04-10 10:31:23 +0000
committermidipix <writeonce@midipix.org>2021-04-10 15:37:31 +0000
commitd86a213e822fdcc90ff8a456e65eabaad3a8ca7a (patch)
treef38f384e1b679c2d00ec9a05129a3540bf7aed49 /sofort
parent1bb591b6b6c9d4b2d4933de7960bcf4f0aa3e1ba (diff)
downloadslibtool-d86a213e822fdcc90ff8a456e65eabaad3a8ca7a.tar.bz2
slibtool-d86a213e822fdcc90ff8a456e65eabaad3a8ca7a.tar.xz
build system: posix make support: refactored handling of the PACKAGE_APP macro.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/core/_flavor/flavor_app_linking_all_shared.mk4
-rw-r--r--sofort/core/_flavor/flavor_app_linking_all_static.mk4
-rw-r--r--sofort/core/_flavor/flavor_app_linking_default.mk4
3 files changed, 6 insertions, 6 deletions
diff --git a/sofort/core/_flavor/flavor_app_linking_all_shared.mk b/sofort/core/_flavor/flavor_app_linking_all_shared.mk
index d674c84..fe89318 100644
--- a/sofort/core/_flavor/flavor_app_linking_all_shared.mk
+++ b/sofort/core/_flavor/flavor_app_linking_all_shared.mk
@@ -1,7 +1,7 @@
# flavor_app_linking_all_shared.mk: handling of frontend linking options.
# this file is covered by COPYING.SOFORT.
+PACKAGE_APP = $(SHARED_APP)
+
package-app: shared-app
-app: PACKAGE_APP = $(SHARED_APP)
-app-tag: PACKAGE_APP = $(SHARED_APP)
app.tag: $(SHARED_APP)
diff --git a/sofort/core/_flavor/flavor_app_linking_all_static.mk b/sofort/core/_flavor/flavor_app_linking_all_static.mk
index 855283b..7a5f620 100644
--- a/sofort/core/_flavor/flavor_app_linking_all_static.mk
+++ b/sofort/core/_flavor/flavor_app_linking_all_static.mk
@@ -1,7 +1,7 @@
# flavor_app_linking_all_static.mk: handling of frontend linking options.
# this file is covered by COPYING.SOFORT.
+PACKAGE_APP = $(STATIC_APP)
+
package-app: static-app
-app: PACKAGE_APP = $(STATIC_APP)
-app-tag: PACKAGE_APP = $(STATIC_APP)
app.tag: $(STATIC_APP)
diff --git a/sofort/core/_flavor/flavor_app_linking_default.mk b/sofort/core/_flavor/flavor_app_linking_default.mk
index 99ca8b3..b0c1d34 100644
--- a/sofort/core/_flavor/flavor_app_linking_default.mk
+++ b/sofort/core/_flavor/flavor_app_linking_default.mk
@@ -1,7 +1,7 @@
# flavor_app_linking_default.mk: handling of frontend linking options.
# this file is covered by COPYING.SOFORT.
+PACKAGE_APP = $(DEFAULT_APP)
+
package-app: default-app
-app: PACKAGE_APP = $(DEFAULT_APP)
-app-tag: PACKAGE_APP = $(DEFAULT_APP)
app.tag: $(DEFAULT_APP)