Blame project/custom.mk

5694f7
ifeq ($(OS_BINFMT),PE)
5694f7
include $(PROJECT_DIR)/sysinfo/os/pe.mk
5694f7
endif
79e6a8
79e6a8
ifeq ($(OS_BINFMT),ELF)
79e6a8
include $(PROJECT_DIR)/sysinfo/os/elf.mk
79e6a8
endif
31ed66
31ed66
31ed66
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
ifneq ($(DISABLE_STATIC),yes)
840c66
package-install-headers:install-headers
840c66
840c66
else ifneq ($(DISABLE_SHARED),yes)
840c66
package-install-headers:install-headers
840c66
840c66
else
840c66
package-install-headers:
840c66
endif
840c66
840c66
840c66
31ed66
ifeq ($(ALL_STATIC),yes)
31ed66
31ed66
package-app:	static-app
31ed66
app:		PACKAGE_APP = $(STATIC_APP)
31ed66
app-tag:	PACKAGE_APP = $(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)
31ed66
31ed66
31ed66
else
31ed66
31ed66
package-app:	default-app
31ed66
app:		PACKAGE_APP = $(DEFAULT_APP)
31ed66
app-tag:	PACKAGE_APP = $(DEFAULT_APP)
31ed66
31ed66
endif