blob: e58f88cabd8e0bff4bf62fc5dbc5a10aa57daa0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
ifeq ($(OS_BINFMT),PE)
include $(PROJECT_DIR)/sysinfo/os/pe.mk
endif
ifeq ($(OS_BINFMT),ELF)
include $(PROJECT_DIR)/sysinfo/os/elf.mk
endif
ifeq ($(ALL_STATIC),yes)
package-app: static-app
app: PACKAGE_APP = $(STATIC_APP)
app-tag: PACKAGE_APP = $(STATIC_APP)
else ifeq ($(ALL_SHARED),yes)
package-app: shared-app
app: PACKAGE_APP = $(SHARED_APP)
app-tag: PACKAGE_APP = $(SHARED_APP)
else
package-app: default-app
app: PACKAGE_APP = $(DEFAULT_APP)
app-tag: PACKAGE_APP = $(DEFAULT_APP)
endif
|