summaryrefslogtreecommitdiffhomepage
path: root/project/custom.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-10 17:27:23 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:48 -0500
commitf64a25a13db955c21a5f7e40ac89c2a4cd51ebf8 (patch)
treed56bb9248757489e59eea324d9a71e84cab2f596 /project/custom.mk
parentd564ee4ff9daba100a6f938791d2837ead3f25c7 (diff)
downloadperk-f64a25a13db955c21a5f7e40ac89c2a4cd51ebf8.tar.bz2
perk-f64a25a13db955c21a5f7e40ac89c2a4cd51ebf8.tar.xz
build system: moved core definition files to a designated folder.
Diffstat (limited to 'project/custom.mk')
-rw-r--r--project/custom.mk76
1 files changed, 0 insertions, 76 deletions
diff --git a/project/custom.mk b/project/custom.mk
deleted file mode 100644
index 8e0bbc4..0000000
--- a/project/custom.mk
+++ /dev/null
@@ -1,76 +0,0 @@
-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