Blame sofort/core/flavor.mk

7d79b0
# flavor.mk: top-level handling of build flavors.
7d79b0
# this file is covered by COPYING.SOFORT.
7d79b0
af99a0
ifneq ($(OS_DSO_EXRULES),)
af99a0
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
b2d0f4
endif
959a94
a8ab0d
ifeq ($(DISABLE_STATIC),yes)
a8ab0d
package-static:
a8ab0d
package-install-static:
a8ab0d
else
a8ab0d
package-static:		static
a8ab0d
package-install-static:	install-static
a8ab0d
endif
a8ab0d
a8ab0d
ifeq ($(DISABLE_SHARED),yes)
a8ab0d
package-shared:
a8ab0d
package-install-shared:
a8ab0d
else
a8ab0d
package-shared:		shared
a8ab0d
package-install-shared:	install-shared
a8ab0d
endif
a8ab0d
a8ab0d
a8ab0d
54c1e4
ifeq ($(DISABLE_FRONTEND),yes)
54c1e4
app-tag:
54c1e4
package-install-app:
54c1e4
package-install-extras:
54c1e4
else
54c1e4
app-tag:		package-app app.tag
54c1e4
package-install-app:	install-app
54c1e4
package-install-extras:	install-extras
54c1e4
endif
54c1e4
54c1e4
54c1e4
c26f15
ifeq ($(ALL_STATIC),yes)
c26f15
c26f15
package-app:	static-app
c26f15
app:		PACKAGE_APP = $(STATIC_APP)
c26f15
app-tag:	PACKAGE_APP = $(STATIC_APP)
5d8ea8
app.tag:	$(STATIC_APP)
c26f15
c26f15
c26f15
else ifeq ($(ALL_SHARED),yes)
c26f15
c26f15
package-app:	shared-app
c26f15
app:		PACKAGE_APP = $(SHARED_APP)
c26f15
app-tag:	PACKAGE_APP = $(SHARED_APP)
5d8ea8
app.tag:	$(SHARED_APP)
c26f15
c26f15
c26f15
else
c26f15
c26f15
package-app:	default-app
c26f15
app:		PACKAGE_APP = $(DEFAULT_APP)
c26f15
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
5d8ea8
app.tag:	$(DEFAULT_APP)
c26f15
c26f15
endif
8dc59e
8dc59e
8dc59e
8dc59e
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
8dc59e
8dc59e
install-headers:install-headers-custom
8dc59e
8dc59e
else
8dc59e
8dc59e
install-headers:install-headers-default
8dc59e
8dc59e
endif