Blame sofort/core/flavor.mk

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