Blame sofort/core/flavor.mk

c88d44
# flavor.mk: top-level handling of build flavors.
c88d44
# this file is covered by COPYING.SOFORT.
c88d44
f7f887
ifneq ($(OS_DSO_EXRULES),)
f7f887
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
1f5b18
endif
74e485
a7e33b
ifeq ($(DISABLE_STATIC),yes)
a7e33b
package-static:
a7e33b
package-install-static:
a7e33b
else
a7e33b
package-static:		static
a7e33b
package-install-static:	install-static
a7e33b
endif
a7e33b
a7e33b
ifeq ($(DISABLE_SHARED),yes)
a7e33b
package-shared:
a7e33b
package-install-shared:
a7e33b
else
a7e33b
package-shared:		shared
a7e33b
package-install-shared:	install-shared
a7e33b
endif
a7e33b
a7e33b
a7e33b
eb1dc5
ifeq ($(DISABLE_FRONTEND),yes)
eb1dc5
app-tag:
eb1dc5
package-install-app:
eb1dc5
package-install-extras:
eb1dc5
else
eb1dc5
app-tag:		package-app app.tag
eb1dc5
package-install-app:	install-app
eb1dc5
package-install-extras:	install-extras
eb1dc5
endif
eb1dc5
eb1dc5
eb1dc5
32003e
ifeq ($(ALL_STATIC),yes)
32003e
32003e
package-app:	static-app
32003e
app:		PACKAGE_APP = $(STATIC_APP)
32003e
app-tag:	PACKAGE_APP = $(STATIC_APP)
473425
app.tag:	$(STATIC_APP)
32003e
32003e
32003e
else ifeq ($(ALL_SHARED),yes)
32003e
32003e
package-app:	shared-app
32003e
app:		PACKAGE_APP = $(SHARED_APP)
32003e
app-tag:	PACKAGE_APP = $(SHARED_APP)
473425
app.tag:	$(SHARED_APP)
32003e
32003e
32003e
else
32003e
32003e
package-app:	default-app
32003e
app:		PACKAGE_APP = $(DEFAULT_APP)
32003e
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
473425
app.tag:	$(DEFAULT_APP)
32003e
32003e
endif
db15ad
db15ad
db15ad
db15ad
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
db15ad
db15ad
install-headers:install-headers-custom
db15ad
db15ad
else
db15ad
db15ad
install-headers:install-headers-default
db15ad
db15ad
endif