Blame sofort/flavor.mk

b8199b
ifneq ($(OS_DSO_EXRULES),)
b8199b
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
5694f7
endif
79e6a8
840c66
ifeq ($(DISABLE_STATIC),yes)
840c66
package-static:
840c66
package-install-static:
840c66
else
840c66
package-static:		static
840c66
package-install-static:	install-static
840c66
endif
840c66
840c66
ifeq ($(DISABLE_SHARED),yes)
840c66
package-shared:
840c66
package-install-shared:
840c66
else
840c66
package-shared:		shared
840c66
package-install-shared:	install-shared
840c66
endif
840c66
840c66
840c66
d48c74
ifeq ($(DISABLE_FRONTEND),yes)
d48c74
app-tag:
d48c74
package-install-app:
d48c74
package-install-extras:
d48c74
else
d48c74
app-tag:		package-app app.tag
d48c74
package-install-app:	install-app
d48c74
package-install-extras:	install-extras
d48c74
endif
d48c74
d48c74
d48c74
31ed66
ifeq ($(ALL_STATIC),yes)
31ed66
31ed66
package-app:	static-app
31ed66
app:		PACKAGE_APP = $(STATIC_APP)
31ed66
app-tag:	PACKAGE_APP = $(STATIC_APP)
e25045
app.tag:	$(STATIC_APP)
31ed66
31ed66
31ed66
else ifeq ($(ALL_SHARED),yes)
31ed66
31ed66
package-app:	shared-app
31ed66
app:		PACKAGE_APP = $(SHARED_APP)
31ed66
app-tag:	PACKAGE_APP = $(SHARED_APP)
e25045
app.tag:	$(SHARED_APP)
31ed66
31ed66
31ed66
else
31ed66
31ed66
package-app:	default-app
31ed66
app:		PACKAGE_APP = $(DEFAULT_APP)
31ed66
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
e25045
app.tag:	$(DEFAULT_APP)
31ed66
31ed66
endif
bcd956
bcd956
bcd956
bcd956
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
bcd956
bcd956
install-headers:install-headers-custom
bcd956
bcd956
else
bcd956
bcd956
install-headers:install-headers-default
bcd956
bcd956
endif