Blame sofort/core/flavor.mk

7a3ffb
# flavor.mk: top-level handling of build flavors.
7a3ffb
# this file is covered by COPYING.SOFORT.
7a3ffb
ac2c20
ifneq ($(OS_DSO_EXRULES),)
ac2c20
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
0efa8c
endif
0efa8c
0efa8c
ifeq ($(DISABLE_STATIC),yes)
0efa8c
package-static:
0efa8c
package-install-static:
0efa8c
else
0efa8c
package-static:		static
0efa8c
package-install-static:	install-static
0efa8c
endif
0efa8c
0efa8c
ifeq ($(DISABLE_SHARED),yes)
0efa8c
package-shared:
0efa8c
package-install-shared:
0efa8c
else
0efa8c
package-shared:		shared
0efa8c
package-install-shared:	install-shared
0efa8c
endif
0efa8c
0efa8c
0efa8c
0efa8c
ifeq ($(DISABLE_FRONTEND),yes)
0efa8c
app-tag:
0efa8c
package-install-app:
0efa8c
package-install-extras:
0efa8c
else
0efa8c
app-tag:		package-app app.tag
0efa8c
package-install-app:	install-app
0efa8c
package-install-extras:	install-extras
0efa8c
endif
0efa8c
0efa8c
0efa8c
0efa8c
ifeq ($(ALL_STATIC),yes)
0efa8c
0efa8c
package-app:	static-app
0efa8c
app:		PACKAGE_APP = $(STATIC_APP)
0efa8c
app-tag:	PACKAGE_APP = $(STATIC_APP)
0efa8c
app.tag:	$(STATIC_APP)
0efa8c
0efa8c
0efa8c
else ifeq ($(ALL_SHARED),yes)
0efa8c
0efa8c
package-app:	shared-app
0efa8c
app:		PACKAGE_APP = $(SHARED_APP)
0efa8c
app-tag:	PACKAGE_APP = $(SHARED_APP)
0efa8c
app.tag:	$(SHARED_APP)
0efa8c
0efa8c
0efa8c
else
0efa8c
0efa8c
package-app:	default-app
0efa8c
app:		PACKAGE_APP = $(DEFAULT_APP)
0efa8c
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
0efa8c
app.tag:	$(DEFAULT_APP)
0efa8c
0efa8c
endif
0efa8c
0efa8c
0efa8c
0efa8c
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
0efa8c
0efa8c
install-headers:install-headers-custom
0efa8c
0efa8c
else
0efa8c
0efa8c
install-headers:install-headers-default
0efa8c
0efa8c
endif