diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 20:57:15 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 21:10:05 -0500 |
commit | 474ea8f4653a548fb05b0e35bac08b2a0a8567c8 (patch) | |
tree | b56fb0eb56610f82261ff4329e70bc58fb9ec853 /sofort/flavor.mk | |
parent | 2a3aaf500bec7434925e72df7729472921048385 (diff) | |
download | ntapi-474ea8f4653a548fb05b0e35bac08b2a0a8567c8.tar.bz2 ntapi-474ea8f4653a548fb05b0e35bac08b2a0a8567c8.tar.xz |
build system: sofort: refactored, rearranged using distinct sub-folders.
Diffstat (limited to 'sofort/flavor.mk')
-rw-r--r-- | sofort/flavor.mk | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/sofort/flavor.mk b/sofort/flavor.mk deleted file mode 100644 index bd9ab06..0000000 --- a/sofort/flavor.mk +++ /dev/null @@ -1,70 +0,0 @@ -ifneq ($(OS_DSO_EXRULES),) -include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).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 |