summaryrefslogtreecommitdiff
path: root/sofort/custom.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-10-29 13:58:33 -0400
committermidipix <writeonce@midipix.org>2016-10-31 14:57:14 -0400
commit8be3778f436d9e60d9e33bc7bbd07a1453ecd1f6 (patch)
tree9a521176bbe2505810f895b4ef6be15922585c24 /sofort/custom.mk
parent5c577bdd1f6ecc2b76d125b5af69177467c8d2f3 (diff)
downloadbfirm-8be3778f436d9e60d9e33bc7bbd07a1453ecd1f6.tar.bz2
bfirm-8be3778f436d9e60d9e33bc7bbd07a1453ecd1f6.tar.xz
build system: created skeleton.
Diffstat (limited to 'sofort/custom.mk')
-rw-r--r--sofort/custom.mk76
1 files changed, 76 insertions, 0 deletions
diff --git a/sofort/custom.mk b/sofort/custom.mk
new file mode 100644
index 0000000..8e0bbc4
--- /dev/null
+++ b/sofort/custom.mk
@@ -0,0 +1,76 @@
+ifeq ($(OS_BINFMT),PE)
+include $(PROJECT_DIR)/sysinfo/os/pe.mk
+endif
+
+ifeq ($(OS_BINFMT),ELF)
+include $(PROJECT_DIR)/sysinfo/os/elf.mk
+endif
+
+
+
+ifeq ($(DISABLE_STATIC),yes)
+package-static:
+package-install-static:
+else
+package-static: static
+package-install-static: install-static
+endif
+
+ifeq ($(DISABLE_SHARED),yes)
+package-shared:
+package-install-shared:
+else
+package-shared: shared
+package-install-shared: install-shared
+endif
+
+
+
+ifeq ($(DISABLE_FRONTEND),yes)
+app-tag:
+package-install-app:
+package-install-extras:
+else
+app-tag: package-app app.tag
+package-install-app: install-app
+package-install-extras: install-extras
+endif
+
+
+
+ifeq ($(ALL_STATIC),yes)
+
+package-app: static-app
+app: PACKAGE_APP = $(STATIC_APP)
+app-tag: PACKAGE_APP = $(STATIC_APP)
+app.tag: $(STATIC_APP)
+
+
+else ifeq ($(ALL_SHARED),yes)
+
+package-app: shared-app
+app: PACKAGE_APP = $(SHARED_APP)
+app-tag: PACKAGE_APP = $(SHARED_APP)
+app.tag: $(SHARED_APP)
+
+
+else
+
+package-app: default-app
+app: PACKAGE_APP = $(DEFAULT_APP)
+app-tag: PACKAGE_APP = $(DEFAULT_APP)
+app.tag: $(DEFAULT_APP)
+
+endif
+
+
+
+ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
+
+install-headers:install-headers-custom
+
+else
+
+install-headers:install-headers-default
+
+endif