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

Latest commit

 

History

History
203 lines (153 loc) · 5 KB

Makefile.in

File metadata and controls

203 lines (153 loc) · 5 KB
 
Jun 22, 2011
Jun 22, 2011
1
2
3
4
5
6
7
8
9
10
11
12
# Makefile to build the SDL tests
srcdir = @srcdir@
CC = @CC@
EXE = @EXE@
CFLAGS = @CFLAGS@
LIBS = @LIBS@
TARGETS = \
checkkeys$(EXE) \
loopwave$(EXE) \
Sep 1, 2012
Sep 1, 2012
13
testaudioinfo$(EXE) \
Jun 22, 2011
Jun 22, 2011
14
15
16
17
18
19
20
21
22
23
24
25
testdraw2$(EXE) \
testerror$(EXE) \
testfile$(EXE) \
testgesture$(EXE) \
testgl2$(EXE) \
testgles$(EXE) \
testhaptic$(EXE) \
testrumble$(EXE) \
testthread$(EXE) \
testiconv$(EXE) \
testime$(EXE) \
testintersections$(EXE) \
May 30, 2012
May 30, 2012
26
testrelative$(EXE) \
Jun 22, 2011
Jun 22, 2011
27
28
29
30
31
testjoystick$(EXE) \
testkeys$(EXE) \
testloadso$(EXE) \
testlock$(EXE) \
testmultiaudio$(EXE) \
Jan 7, 2012
Jan 7, 2012
32
testnative$(EXE) \
Jun 22, 2011
Jun 22, 2011
33
34
35
testoverlay2$(EXE) \
testplatform$(EXE) \
testpower$(EXE) \
Jan 19, 2012
Jan 19, 2012
36
testrendertarget$(EXE) \
Jun 22, 2011
Jun 22, 2011
37
38
39
40
41
42
43
44
45
46
47
48
testresample$(EXE) \
testscale$(EXE) \
testsem$(EXE) \
testshader$(EXE) \
testshape$(EXE) \
testsprite2$(EXE) \
testspriteminimal$(EXE) \
teststreaming$(EXE) \
testtimer$(EXE) \
testver$(EXE) \
testwm2$(EXE) \
torturethread$(EXE) \
Jun 1, 2012
Jun 1, 2012
49
testrendercopyex$(EXE) \
Oct 30, 2012
Oct 30, 2012
50
testmessage$(EXE) \
Jun 22, 2011
Jun 22, 2011
51
52
53
54
55
56
57
all: Makefile $(TARGETS)
Makefile: $(srcdir)/Makefile.in
$(SHELL) config.status $@
checkkeys$(EXE): $(srcdir)/checkkeys.c
Oct 24, 2012
Oct 24, 2012
58
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
59
60
loopwave$(EXE): $(srcdir)/loopwave.c
Oct 24, 2012
Oct 24, 2012
61
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
62
63
testresample$(EXE): $(srcdir)/testresample.c
Oct 24, 2012
Oct 24, 2012
64
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
65
66
testaudioinfo$(EXE): $(srcdir)/testaudioinfo.c
Oct 24, 2012
Oct 24, 2012
67
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
68
69
testmultiaudio$(EXE): $(srcdir)/testmultiaudio.c
Oct 24, 2012
Oct 24, 2012
70
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
71
72
testatomic$(EXE): $(srcdir)/testatomic.c
Oct 24, 2012
Oct 24, 2012
73
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
74
75
testintersections$(EXE): $(srcdir)/testintersections.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
76
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
77
May 30, 2012
May 30, 2012
78
testrelative$(EXE): $(srcdir)/testrelative.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
79
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
May 30, 2012
May 30, 2012
80
Jun 22, 2011
Jun 22, 2011
81
testdraw2$(EXE): $(srcdir)/testdraw2.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
82
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
83
84
testerror$(EXE): $(srcdir)/testerror.c
Oct 24, 2012
Oct 24, 2012
85
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
86
87
testfile$(EXE): $(srcdir)/testfile.c
Oct 24, 2012
Oct 24, 2012
88
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
89
90
testgesture$(EXE): $(srcdir)/testgesture.c
Oct 24, 2012
Oct 24, 2012
91
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
Jun 22, 2011
Jun 22, 2011
92
93
testgl2$(EXE): $(srcdir)/testgl2.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
94
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
Jun 22, 2011
Jun 22, 2011
95
96
testgles$(EXE): $(srcdir)/testgles.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
97
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
Jun 22, 2011
Jun 22, 2011
98
99
testhaptic$(EXE): $(srcdir)/testhaptic.c
Oct 24, 2012
Oct 24, 2012
100
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
101
102
testrumble$(EXE): $(srcdir)/testrumble.c
Oct 24, 2012
Oct 24, 2012
103
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
104
105
testthread$(EXE): $(srcdir)/testthread.c
Oct 24, 2012
Oct 24, 2012
106
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
107
108
testiconv$(EXE): $(srcdir)/testiconv.c
Oct 24, 2012
Oct 24, 2012
109
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
110
May 31, 2012
May 31, 2012
111
testime$(EXE): $(srcdir)/testime.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
112
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @SDL_TTF_LIB@
Jun 22, 2011
Jun 22, 2011
113
Oct 14, 2012
Oct 14, 2012
114
testjoystick$(EXE): $(srcdir)/testjoystick.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
115
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
116
117
testkeys$(EXE): $(srcdir)/testkeys.c
Oct 24, 2012
Oct 24, 2012
118
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
119
120
testloadso$(EXE): $(srcdir)/testloadso.c
Oct 24, 2012
Oct 24, 2012
121
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
122
123
testlock$(EXE): $(srcdir)/testlock.c
Oct 24, 2012
Oct 24, 2012
124
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
125
Aug 9, 2012
Aug 9, 2012
126
ifeq (@ISMACOSX@,true)
Jan 7, 2012
Jan 7, 2012
127
128
129
130
testnative$(EXE): $(srcdir)/testnative.c \
$(srcdir)/testnativecocoa.m \
$(srcdir)/testnativew32.c \
$(srcdir)/testnativex11.c
Oct 24, 2012
Oct 24, 2012
131
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) -L/usr/X11/lib -lX11 -framework Cocoa
Aug 9, 2012
Aug 9, 2012
132
133
134
135
136
endif
ifeq (@ISWINDOWS@,true)
testnative$(EXE): $(srcdir)/testnative.c \
$(srcdir)/testnativew32.c
Oct 24, 2012
Oct 24, 2012
137
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Aug 9, 2012
Aug 9, 2012
138
139
140
141
142
endif
ifeq (@ISUNIX@,true)
testnative$(EXE): $(srcdir)/testnative.c \
$(srcdir)/testnativex11.c
Oct 24, 2012
Oct 24, 2012
143
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) -L/usr/X11/lib -lX11
Aug 9, 2012
Aug 9, 2012
144
endif
Jan 7, 2012
Jan 7, 2012
145
Jun 22, 2011
Jun 22, 2011
146
testoverlay2$(EXE): $(srcdir)/testoverlay2.c
Oct 24, 2012
Oct 24, 2012
147
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
148
149
testplatform$(EXE): $(srcdir)/testplatform.c
Oct 24, 2012
Oct 24, 2012
150
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
151
152
testpower$(EXE): $(srcdir)/testpower.c
Oct 24, 2012
Oct 24, 2012
153
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
154
Jan 19, 2012
Jan 19, 2012
155
testrendertarget$(EXE): $(srcdir)/testrendertarget.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
156
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jan 19, 2012
Jan 19, 2012
157
Jun 22, 2011
Jun 22, 2011
158
testscale$(EXE): $(srcdir)/testscale.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
159
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
160
161
testsem$(EXE): $(srcdir)/testsem.c
Oct 24, 2012
Oct 24, 2012
162
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
163
164
testshader$(EXE): $(srcdir)/testshader.c
Oct 24, 2012
Oct 24, 2012
165
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
Jun 22, 2011
Jun 22, 2011
166
167
testshape$(EXE): $(srcdir)/testshape.c
Oct 24, 2012
Oct 24, 2012
168
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
169
170
testsprite2$(EXE): $(srcdir)/testsprite2.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
171
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
Jun 22, 2011
Jun 22, 2011
172
173
testspriteminimal$(EXE): $(srcdir)/testspriteminimal.c
Oct 24, 2012
Oct 24, 2012
174
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
Jun 22, 2011
Jun 22, 2011
175
176
teststreaming$(EXE): $(srcdir)/teststreaming.c
Oct 24, 2012
Oct 24, 2012
177
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
Jun 22, 2011
Jun 22, 2011
178
179
testtimer$(EXE): $(srcdir)/testtimer.c
Oct 24, 2012
Oct 24, 2012
180
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
181
182
testver$(EXE): $(srcdir)/testver.c
Oct 24, 2012
Oct 24, 2012
183
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
184
185
testwm2$(EXE): $(srcdir)/testwm2.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
186
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
187
188
torturethread$(EXE): $(srcdir)/torturethread.c
Oct 24, 2012
Oct 24, 2012
189
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
190
Jun 1, 2012
Jun 1, 2012
191
testrendercopyex$(EXE): $(srcdir)/testrendercopyex.c $(srcdir)/common.c
Oct 24, 2012
Oct 24, 2012
192
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) @MATHLIB@
Oct 30, 2012
Oct 30, 2012
193
194
195
196
testmessage$(EXE): $(srcdir)/testmessage.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
Jun 22, 2011
Jun 22, 2011
197
198
199
200
201
202
203
clean:
rm -f $(TARGETS)
distclean: clean
rm -f Makefile
rm -f config.status config.cache config.log
rm -rf $(srcdir)/autom4te*