Blame sofort/flavor.mk

d49db1
ifneq ($(OS_DSO_EXRULES),)
d49db1
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
551024
endif
551024
551024
ifeq ($(DISABLE_STATIC),yes)
551024
package-static:
551024
package-install-static:
551024
else
551024
package-static:		static
551024
package-install-static:	install-static
551024
endif
551024
551024
ifeq ($(DISABLE_SHARED),yes)
551024
package-shared:
551024
package-install-shared:
551024
else
551024
package-shared:		shared
551024
package-install-shared:	install-shared
551024
endif
551024
551024
551024
551024
ifeq ($(DISABLE_FRONTEND),yes)
551024
app-tag:
551024
package-install-app:
551024
package-install-extras:
551024
else
551024
app-tag:		package-app app.tag
551024
package-install-app:	install-app
551024
package-install-extras:	install-extras
551024
endif
551024
551024
551024
551024
ifeq ($(ALL_STATIC),yes)
551024
551024
package-app:	static-app
551024
app:		PACKAGE_APP = $(STATIC_APP)
551024
app-tag:	PACKAGE_APP = $(STATIC_APP)
551024
app.tag:	$(STATIC_APP)
551024
551024
551024
else ifeq ($(ALL_SHARED),yes)
551024
551024
package-app:	shared-app
551024
app:		PACKAGE_APP = $(SHARED_APP)
551024
app-tag:	PACKAGE_APP = $(SHARED_APP)
551024
app.tag:	$(SHARED_APP)
551024
551024
551024
else
551024
551024
package-app:	default-app
551024
app:		PACKAGE_APP = $(DEFAULT_APP)
551024
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
551024
app.tag:	$(DEFAULT_APP)
551024
551024
endif
551024
551024
551024
551024
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
551024
551024
install-headers:install-headers-custom
551024
551024
else
551024
551024
install-headers:install-headers-default
551024
551024
endif