File: module.mk

package info (click to toggle)
scummvm 2.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 450,268 kB
  • sloc: cpp: 4,297,604; asm: 28,322; python: 12,901; sh: 11,219; java: 8,477; xml: 7,843; perl: 2,633; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (104 lines) | stat: -rw-r--r-- 1,673 bytes parent folder | download | duplicates (2)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
MODULE := backends/platform/sdl

MODULE_OBJS := \
	sdl.o \
	sdl-window.o

ifdef KOLIBRIOS
MODULE_OBJS += \
	kolibrios/kolibrios-main.o \
	kolibrios/kolibrios.o
endif

ifdef POSIX
MODULE_OBJS += \
	posix/posix-main.o \
	posix/posix.o
endif

ifdef MACOSX
MODULE_OBJS += \
	macosx/macosx-main.o \
	macosx/macosx.o \
	macosx/macosx-touchbar.o \
	macosx/macosx-window.o \
	macosx/macosx_wrapper.o \
	macosx/macosx_osys_misc.o \
	macosx/appmenu_osx.o
endif

ifdef WIN32
MODULE_OBJS += \
	win32/win32-main.o \
	win32/win32-window.o \
	win32/win32_wrapper.o \
	win32/win32.o
endif

ifdef AMIGAOS
MODULE_OBJS += \
	amigaos/amigaos-main.o \
	amigaos/amigaos.o
endif

ifdef RISCOS
MODULE_OBJS += \
	riscos/riscos-main.o \
	riscos/riscos-utils.o \
	riscos/riscos.o
endif

ifdef MIYOO
MODULE_OBJS += \
	miyoo/miyoo-main.o \
	miyoo/miyoo.o
endif

ifdef MORPHOS
MODULE_OBJS += \
	morphos/morphos-main.o \
	morphos/morphos.o
endif

ifdef OPENDINGUX
MODULE_OBJS += \
	opendingux/opendingux-main.o \
	opendingux/opendingux.o
endif

ifdef PLAYSTATION3
MODULE_OBJS += \
	ps3/ps3-main.o \
	ps3/ps3.o
endif

ifdef PSP2
CC=arm-vita-eabi-gcc
MODULE_OBJS += \
	psp2/psp2-main.o \
	psp2/psp2.o
endif

ifdef SAILFISH
MODULE_OBJS += \
	sailfish/sailfish-main.o \
	sailfish/sailfish-window.o \
	sailfish/sailfish.o
endif

ifdef SWITCH
MODULE_OBJS += \
	switch/switch-main.o \
	switch/switch.o
endif

ifdef EMSCRIPTEN
MODULE_OBJS += \
	emscripten/emscripten-main.o \
	emscripten/emscripten.o
endif

# We don't use rules.mk but rather manually update OBJS and MODULE_DIRS.
MODULE_OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS))
OBJS := $(MODULE_OBJS) $(OBJS)
MODULE_DIRS += $(sort $(dir $(MODULE_OBJS)))