Blame sofort/core/flavor.mk

9a8e72
# flavor.mk: top-level handling of build flavors.
9a8e72
# this file is covered by COPYING.SOFORT.
9a8e72
2189ad
ifneq ($(OS_DSO_EXRULES),)
2189ad
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
d93e2d
endif
22223c
b8e322
ifeq ($(DISABLE_STATIC),yes)
b8e322
package-static:
b8e322
package-install-static:
b8e322
else
b8e322
package-static:		static
b8e322
package-install-static:	install-static
b8e322
endif
b8e322
b8e322
ifeq ($(DISABLE_SHARED),yes)
b8e322
package-shared:
b8e322
package-install-shared:
b8e322
else
b8e322
package-shared:		shared
b8e322
package-install-shared:	install-shared
b8e322
endif
b8e322
b8e322
b8e322
6c3f49
ifeq ($(DISABLE_FRONTEND),yes)
6c3f49
app-tag:
6c3f49
package-install-app:
6c3f49
package-install-extras:
6c3f49
else
6c3f49
app-tag:		package-app app.tag
6c3f49
package-install-app:	install-app
6c3f49
package-install-extras:	install-extras
6c3f49
endif
6c3f49
6c3f49
6c3f49
4f92c0
ifeq ($(ALL_STATIC),yes)
4f92c0
4f92c0
package-app:	static-app
4f92c0
app:		PACKAGE_APP = $(STATIC_APP)
4f92c0
app-tag:	PACKAGE_APP = $(STATIC_APP)
caaafc
app.tag:	$(STATIC_APP)
4f92c0
4f92c0
4f92c0
else ifeq ($(ALL_SHARED),yes)
4f92c0
4f92c0
package-app:	shared-app
4f92c0
app:		PACKAGE_APP = $(SHARED_APP)
4f92c0
app-tag:	PACKAGE_APP = $(SHARED_APP)
caaafc
app.tag:	$(SHARED_APP)
4f92c0
4f92c0
4f92c0
else
4f92c0
4f92c0
package-app:	default-app
4f92c0
app:		PACKAGE_APP = $(DEFAULT_APP)
4f92c0
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
caaafc
app.tag:	$(DEFAULT_APP)
4f92c0
4f92c0
endif
ee8295
ee8295
ee8295
ee8295
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
ee8295
ee8295
install-headers:install-headers-custom
ee8295
ee8295
else
ee8295
ee8295
install-headers:install-headers-default
ee8295
ee8295
endif