Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
231 lines (178 loc) · 5.78 KB

Makefile.in

File metadata and controls

231 lines (178 loc) · 5.78 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile to build the SDL tests
srcdir = @srcdir@
CC = @CC@
EXE = @EXE@
CFLAGS = @CFLAGS@
LIBS = @LIBS@
TARGETS = \
checkkeys$(EXE) \
loopwave$(EXE) \
testaudioinfo$(EXE) \
Dec 23, 2012
Dec 23, 2012
14
testautomation$(EXE) \
Jul 27, 2013
Jul 27, 2013
16
testdrawchessboard$(EXE) \
17
18
testerror$(EXE) \
testfile$(EXE) \
Nov 27, 2012
Nov 27, 2012
19
testgamecontroller$(EXE) \
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
testgesture$(EXE) \
testgl2$(EXE) \
testgles$(EXE) \
testhaptic$(EXE) \
testrumble$(EXE) \
testthread$(EXE) \
testiconv$(EXE) \
testime$(EXE) \
testintersections$(EXE) \
testrelative$(EXE) \
testjoystick$(EXE) \
testkeys$(EXE) \
testloadso$(EXE) \
testlock$(EXE) \
testmultiaudio$(EXE) \
testnative$(EXE) \
testoverlay2$(EXE) \
testplatform$(EXE) \
testpower$(EXE) \
testrendertarget$(EXE) \
testresample$(EXE) \
testscale$(EXE) \
testsem$(EXE) \
testshader$(EXE) \
testshape$(EXE) \
testsprite2$(EXE) \
testspriteminimal$(EXE) \
teststreaming$(EXE) \
testtimer$(EXE) \
testver$(EXE) \
testwm2$(EXE) \
torturethread$(EXE) \
testrendercopyex$(EXE) \
testmessage$(EXE) \
all: Makefile $(TARGETS)
Makefile: $(srcdir)/Makefile.in
$(SHELL) config.status $@
checkkeys$(EXE): $(srcdir)/checkkeys.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
loopwave$(EXE): $(srcdir)/loopwave.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testresample$(EXE): $(srcdir)/testresample.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testaudioinfo$(EXE): $(srcdir)/testaudioinfo.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 23, 2012
Dec 23, 2012
72
testautomation$(EXE): $(srcdir)/testautomation.c \
May 24, 2013
May 24, 2013
73
$(srcdir)/testautomation_audio.c \
Dec 23, 2012
Dec 23, 2012
74
$(srcdir)/testautomation_clipboard.c \
May 24, 2013
May 24, 2013
75
76
$(srcdir)/testautomation_events.c \
$(srcdir)/testautomation_keyboard.c \
Feb 12, 2013
Feb 12, 2013
77
$(srcdir)/testautomation_main.c \
May 24, 2013
May 24, 2013
78
79
$(srcdir)/testautomation_mouse.c \
$(srcdir)/testautomation_pixels.c \
Dec 23, 2012
Dec 23, 2012
80
81
82
$(srcdir)/testautomation_platform.c \
$(srcdir)/testautomation_rect.c \
$(srcdir)/testautomation_render.c \
Dec 24, 2012
Dec 24, 2012
83
$(srcdir)/testautomation_rwops.c \
May 24, 2013
May 24, 2013
84
85
$(srcdir)/testautomation_sdltest.c \
$(srcdir)/testautomation_stdlib.c \
Jan 6, 2013
Jan 6, 2013
86
$(srcdir)/testautomation_surface.c \
Jan 7, 2013
Jan 7, 2013
87
$(srcdir)/testautomation_syswm.c \
May 2, 2013
May 2, 2013
88
$(srcdir)/testautomation_timer.c \
May 24, 2013
May 24, 2013
89
$(srcdir)/testautomation_video.c
Jun 6, 2013
Jun 6, 2013
90
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 23, 2012
Dec 23, 2012
91
92
93
94
95
96
97
testmultiaudio$(EXE): $(srcdir)/testmultiaudio.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testatomic$(EXE): $(srcdir)/testatomic.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
98
testintersections$(EXE): $(srcdir)/testintersections.c
99
100
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
101
testrelative$(EXE): $(srcdir)/testrelative.c
102
103
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
104
testdraw2$(EXE): $(srcdir)/testdraw2.c
105
106
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jul 27, 2013
Jul 27, 2013
107
108
109
testdrawchessboard$(EXE): $(srcdir)/testdrawchessboard.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
110
111
112
113
114
115
testerror$(EXE): $(srcdir)/testerror.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testfile$(EXE): $(srcdir)/testfile.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Nov 27, 2012
Nov 27, 2012
116
117
118
testgamecontroller$(EXE): $(srcdir)/testgamecontroller.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
119
120
121
testgesture$(EXE): $(srcdir)/testgesture.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
Dec 31, 2012
Dec 31, 2012
122
testgl2$(EXE): $(srcdir)/testgl2.c
123
124
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
Dec 31, 2012
Dec 31, 2012
125
testgles$(EXE): $(srcdir)/testgles.c
126
127
128
129
130
131
132
133
134
135
136
137
138
139
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
testhaptic$(EXE): $(srcdir)/testhaptic.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testrumble$(EXE): $(srcdir)/testrumble.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testthread$(EXE): $(srcdir)/testthread.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testiconv$(EXE): $(srcdir)/testiconv.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
140
testime$(EXE): $(srcdir)/testime.c
141
142
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @SDL_TTF_LIB@
Dec 31, 2012
Dec 31, 2012
143
testjoystick$(EXE): $(srcdir)/testjoystick.c
144
145
146
147
148
149
150
151
152
153
154
155
156
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testkeys$(EXE): $(srcdir)/testkeys.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testloadso$(EXE): $(srcdir)/testloadso.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testlock$(EXE): $(srcdir)/testlock.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
ifeq (@ISMACOSX@,true)
testnative$(EXE): $(srcdir)/testnative.c \
Jul 21, 2013
Jul 21, 2013
157
158
159
$(srcdir)/testnativecocoa.m \
$(srcdir)/testnativex11.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) -framework Cocoa @XLIB@
160
161
162
163
164
165
166
167
168
169
170
endif
ifeq (@ISWINDOWS@,true)
testnative$(EXE): $(srcdir)/testnative.c \
$(srcdir)/testnativew32.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
endif
ifeq (@ISUNIX@,true)
testnative$(EXE): $(srcdir)/testnative.c \
$(srcdir)/testnativex11.c
Jul 21, 2013
Jul 21, 2013
171
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @XLIB@
172
173
174
175
176
177
178
179
180
181
182
endif
testoverlay2$(EXE): $(srcdir)/testoverlay2.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testplatform$(EXE): $(srcdir)/testplatform.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testpower$(EXE): $(srcdir)/testpower.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
183
testrendertarget$(EXE): $(srcdir)/testrendertarget.c
184
185
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
186
testscale$(EXE): $(srcdir)/testscale.c
187
188
189
190
191
192
193
194
195
196
197
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testsem$(EXE): $(srcdir)/testsem.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testshader$(EXE): $(srcdir)/testshader.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
testshape$(EXE): $(srcdir)/testshape.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
198
199
testsprite2$(EXE): $(srcdir)/testsprite2.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
200
201
202
203
204
205
206
207
208
209
210
211
212
testspriteminimal$(EXE): $(srcdir)/testspriteminimal.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
teststreaming$(EXE): $(srcdir)/teststreaming.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
testtimer$(EXE): $(srcdir)/testtimer.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testver$(EXE): $(srcdir)/testver.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
213
testwm2$(EXE): $(srcdir)/testwm2.c
214
215
216
217
218
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
torturethread$(EXE): $(srcdir)/torturethread.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Dec 31, 2012
Dec 31, 2012
219
testrendercopyex$(EXE): $(srcdir)/testrendercopyex.c
220
221
222
223
224
225
226
227
228
229
230
231
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
testmessage$(EXE): $(srcdir)/testmessage.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
clean:
rm -f $(TARGETS)
distclean: clean
rm -f Makefile
rm -f config.status config.cache config.log
rm -rf $(srcdir)/autom4te*