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

Latest commit

 

History

History
199 lines (150 loc) · 4.91 KB

Makefile.in

File metadata and controls

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