Mercurial > sdl-ios-xcode
comparison test/Makefile.in @ 1380:d94b080ff6ce
Completely removed dependency on automake
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 20 Feb 2006 02:09:49 +0000 |
parents | |
children | 638da75f9ab8 |
comparison
equal
deleted
inserted
replaced
1379:c0a74f199ecf | 1380:d94b080ff6ce |
---|---|
1 # Makefile to build the SDL tests | |
2 | |
3 srcdir = @srcdir@ | |
4 | |
5 CC = @CC@ | |
6 EXE = @EXE@ | |
7 CFLAGS = @CFLAGS@ | |
8 LIBS = @LIBS@ | |
9 | |
10 TARGETS = checkkeys$(EXE) graywin$(EXE) loopwave$(EXE) testalpha$(EXE) testbitmap$(EXE) testblitspeed$(EXE) testcdrom$(EXE) testcpuinfo$(EXE) testdyngl$(EXE) testendian$(EXE) testerror$(EXE) testgamma$(EXE) testgl$(EXE) testhread$(EXE) testjoystick$(EXE) testkeys$(EXE) testlock$(EXE) testoverlay2$(EXE) testoverlay$(EXE) testpalette$(EXE) testsem$(EXE) testsprite$(EXE) testtimer$(EXE) testtypes$(EXE) testver$(EXE) testvidinfo$(EXE) testwin$(EXE) testwm$(EXE) threadwin$(EXE) torturethread$(EXE) | |
11 | |
12 all: $(TARGETS) | |
13 | |
14 checkkeys$(EXE): $(srcdir)/checkkeys.c | |
15 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
16 | |
17 graywin$(EXE): $(srcdir)/graywin.c | |
18 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
19 | |
20 loopwave$(EXE): $(srcdir)/loopwave.c | |
21 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
22 | |
23 testalpha$(EXE): $(srcdir)/testalpha.c | |
24 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | |
25 | |
26 testbitmap$(EXE): $(srcdir)/testbitmap.c | |
27 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
28 | |
29 testblitspeed$(EXE): $(srcdir)/testblitspeed.c | |
30 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
31 | |
32 testcdrom$(EXE): $(srcdir)/testcdrom.c | |
33 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
34 | |
35 testcpuinfo$(EXE): $(srcdir)/testcpuinfo.c | |
36 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
37 | |
38 testdyngl$(EXE): $(srcdir)/testdyngl.c | |
39 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
40 | |
41 testendian$(EXE): $(srcdir)/testendian.c | |
42 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
43 | |
44 testerror$(EXE): $(srcdir)/testerror.c | |
45 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
46 | |
47 testgamma$(EXE): $(srcdir)/testgamma.c | |
48 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | |
49 | |
50 testgl$(EXE): $(srcdir)/testgl.c | |
51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@ | |
52 | |
53 testhread$(EXE): $(srcdir)/testhread.c | |
54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
55 | |
56 testjoystick$(EXE): $(srcdir)/testjoystick.c | |
57 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
58 | |
59 testkeys$(EXE): $(srcdir)/testkeys.c | |
60 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
61 | |
62 testlock$(EXE): $(srcdir)/testlock.c | |
63 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
64 | |
65 testoverlay2$(EXE): $(srcdir)/testoverlay2.c | |
66 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
67 | |
68 testoverlay$(EXE): $(srcdir)/testoverlay.c | |
69 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
70 | |
71 testpalette$(EXE): $(srcdir)/testpalette.c | |
72 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | |
73 | |
74 testsem$(EXE): $(srcdir)/testsem.c | |
75 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
76 | |
77 testsprite$(EXE): $(srcdir)/testsprite.c | |
78 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | |
79 | |
80 testtimer$(EXE): $(srcdir)/testtimer.c | |
81 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
82 | |
83 testtypes$(EXE): $(srcdir)/testtypes.c | |
84 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
85 | |
86 testver$(EXE): $(srcdir)/testver.c | |
87 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
88 | |
89 testvidinfo$(EXE): $(srcdir)/testvidinfo.c | |
90 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
91 | |
92 testwin$(EXE): $(srcdir)/testwin.c | |
93 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
94 | |
95 testwm$(EXE): $(srcdir)/testwm.c | |
96 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
97 | |
98 threadwin$(EXE): $(srcdir)/threadwin.c | |
99 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
100 | |
101 torturethread$(EXE): $(srcdir)/torturethread.c | |
102 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
103 | |
104 | |
105 clean: | |
106 rm -f $(TARGETS) | |
107 | |
108 distclean: clean | |
109 rm -f Makefile | |
110 rm -f config.status config.cache config.log | |
111 rm -rf $(srcdir)/autom4te* |