forked from cloudflare/doom-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
144 lines (120 loc) · 5.03 KB
/
Makefile.am
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
SUBDIRS = doom
execgamesdir = ${bindir}
execgames_PROGRAMS = @PROGRAM_PREFIX@doom
AM_CFLAGS = -I$(top_srcdir)/textscreen \
-I$(top_srcdir)/opl \
-I$(top_srcdir)/pcsound \
@SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@
# Common source files used by absolutely everything:
COMMON_SOURCE_FILES=\
i_main.c \
i_system.c i_system.h \
m_argv.c m_argv.h \
m_misc.c m_misc.h
# Source files used by the game binaries (chocolate-doom, etc.)
GAME_SOURCE_FILES=\
aes_prng.c aes_prng.h \
d_event.c d_event.h \
doomkeys.h \
doomtype.h \
d_iwad.c d_iwad.h \
d_loop.c d_loop.h \
d_mode.c d_mode.h \
d_ticcmd.h \
deh_str.c deh_str.h \
gusconf.c gusconf.h \
i_cdmus.c i_cdmus.h \
i_endoom.c i_endoom.h \
i_glob.c i_glob.h \
i_input.c i_input.h \
i_joystick.c i_joystick.h \
i_swap.h \
i_midipipe.c i_midipipe.h \
i_musicpack.c \
i_oplmusic.c \
i_pcsound.c \
i_sdlmusic.c \
i_sdlsound.c \
i_sound.c i_sound.h \
i_timer.c i_timer.h \
i_video.c i_video.h \
i_videohr.c i_videohr.h \
midifile.c midifile.h \
mus2mid.c mus2mid.h \
m_bbox.c m_bbox.h \
m_cheat.c m_cheat.h \
m_config.c m_config.h \
m_controls.c m_controls.h \
m_fixed.c m_fixed.h \
net_client.c net_client.h \
net_common.c net_common.h \
net_dedicated.c net_dedicated.h \
net_defs.h \
net_gui.c net_gui.h \
net_io.c net_io.h \
net_loop.c net_loop.h \
net_websockets.c net_websockets.h \
net_packet.c net_packet.h \
net_petname.c net_petname.h \
net_query.c net_query.h \
net_server.c net_server.h \
net_structrw.c net_structrw.h \
sha1.c sha1.h \
memio.c memio.h \
tables.c tables.h \
v_diskicon.c v_diskicon.h \
v_video.c v_video.h \
v_patch.h \
w_checksum.c w_checksum.h \
w_main.c w_main.h \
w_wad.c w_wad.h \
w_file.c w_file.h \
w_file_stdc.c \
w_file_posix.c \
w_file_win32.c \
w_merge.c w_merge.h \
z_zone.c z_zone.h
DEHACKED_SOURCE_FILES = \
deh_defs.h \
deh_io.c deh_io.h \
deh_main.c deh_main.h \
deh_mapping.c deh_mapping.h \
deh_text.c
# Some games support dehacked patches, some don't:
SOURCE_FILES = $(COMMON_SOURCE_FILES) $(GAME_SOURCE_FILES)
SOURCE_FILES_WITH_DEH = $(SOURCE_FILES) $(DEHACKED_SOURCE_FILES)
EXTRA_LIBS = \
$(top_builddir)/textscreen/libtextscreen.a \
$(top_builddir)/pcsound/libpcsound.a \
$(top_builddir)/opl/libopl.a \
@LDFLAGS@ \
@SDL_LIBS@ \
@SDLMIXER_LIBS@ \
@SDLNET_LIBS@
if HAVE_WINDRES
@PROGRAM_PREFIX@doom_SOURCES=$(SOURCE_FILES_WITH_DEH) resource.rc
else
@PROGRAM_PREFIX@doom_SOURCES=$(SOURCE_FILES_WITH_DEH)
endif
@PROGRAM_PREFIX@doom_LDADD = doom/libdoom.a $(EXTRA_LIBS)
# Make "make" aware of convenience libraries in subdirectories
doom/libdoom.a:
$(MAKE) -C doom
EXTRA_DIST = \
CMakeLists.txt \
icon.c
CLEANFILES = $(execgames_SCRIPTS)
.rc.o:
$(WINDRES) $< -o $@
%.o : %.rc
$(WINDRES) $< -o $@
if HAVE_ICONS
icon.c : $(top_builddir)/data/doom.png
$(top_builddir)/data/convert-icon $(top_builddir)/data/doom.png $@
endif
midiread : midifile.c
$(CC) -DTEST $(CFLAGS) @LDFLAGS@ midifile.c -o $@
MUS2MID_SRC_FILES = mus2mid.c memio.c z_native.c i_system.c m_argv.c m_misc.c
mus2mid : $(MUS2MID_SRC_FILES)
$(CC) -DSTANDALONE -I$(top_builddir) $(CFLAGS) @LDFLAGS@ \
$(MUS2MID_SRC_FILES) -o $@