Blame sofort/flavor.mk

711507
ifneq ($(OS_DSO_EXRULES),)
711507
include $(PROJECT_DIR)/sofort/exrules/$(OS_DSO_EXRULES).mk
781ac1
endif
9f9f2d
5b28e8
ifeq ($(DISABLE_STATIC),yes)
5b28e8
package-static:
5b28e8
package-install-static:
5b28e8
else
5b28e8
package-static:		static
5b28e8
package-install-static:	install-static
5b28e8
endif
5b28e8
5b28e8
ifeq ($(DISABLE_SHARED),yes)
5b28e8
package-shared:
5b28e8
package-install-shared:
5b28e8
else
5b28e8
package-shared:		shared
5b28e8
package-install-shared:	install-shared
5b28e8
endif
5b28e8
5b28e8
5b28e8
a403fe
ifeq ($(DISABLE_FRONTEND),yes)
a403fe
app-tag:
a403fe
package-install-app:
a403fe
package-install-extras:
a403fe
else
a403fe
app-tag:		package-app app.tag
a403fe
package-install-app:	install-app
a403fe
package-install-extras:	install-extras
a403fe
endif
a403fe
a403fe
a403fe
53f310
ifeq ($(ALL_STATIC),yes)
53f310
53f310
package-app:	static-app
53f310
app:		PACKAGE_APP = $(STATIC_APP)
53f310
app-tag:	PACKAGE_APP = $(STATIC_APP)
3efbc1
app.tag:	$(STATIC_APP)
53f310
53f310
53f310
else ifeq ($(ALL_SHARED),yes)
53f310
53f310
package-app:	shared-app
53f310
app:		PACKAGE_APP = $(SHARED_APP)
53f310
app-tag:	PACKAGE_APP = $(SHARED_APP)
3efbc1
app.tag:	$(SHARED_APP)
53f310
53f310
53f310
else
53f310
53f310
package-app:	default-app
53f310
app:		PACKAGE_APP = $(DEFAULT_APP)
53f310
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
3efbc1
app.tag:	$(DEFAULT_APP)
53f310
53f310
endif
0804e2
0804e2
0804e2
0804e2
ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
0804e2
0804e2
install-headers:install-headers-custom
0804e2
0804e2
else
0804e2
0804e2
install-headers:install-headers-default
0804e2
0804e2
endif