diff options
author | midipix <writeonce@midipix.org> | 2018-12-25 02:28:50 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-25 03:19:58 -0500 |
commit | 68e869fda868e05a2006a0cf4ca0d37e3c1f3ef1 (patch) | |
tree | 42e879fe42244c6f6a1bfc55d812fa2137f1d3b4 /sofort/custom.mk | |
parent | 1d8e07a9afd9c46e8d4baf871d77da006f5f2e3f (diff) | |
download | slibtool-68e869fda868e05a2006a0cf4ca0d37e3c1f3ef1.tar.bz2 slibtool-68e869fda868e05a2006a0cf4ca0d37e3c1f3ef1.tar.xz |
build system: sofort: promoted and renamed custom.mk --> flavor.mk.
Diffstat (limited to 'sofort/custom.mk')
-rw-r--r-- | sofort/custom.mk | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/sofort/custom.mk b/sofort/custom.mk deleted file mode 100644 index 8e0bbc4..0000000 --- a/sofort/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 |