Mercurial > sdl-ios-xcode
comparison test/Makefile.in @ 1421:638da75f9ab8
testplatform replaces testtypes, testendian, and testcpuinfo
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 24 Feb 2006 06:49:31 +0000 |
parents | d94b080ff6ce |
children | 2eb75f8a32ca |
comparison
equal
deleted
inserted
replaced
1420:2405517b5eab | 1421:638da75f9ab8 |
---|---|
5 CC = @CC@ | 5 CC = @CC@ |
6 EXE = @EXE@ | 6 EXE = @EXE@ |
7 CFLAGS = @CFLAGS@ | 7 CFLAGS = @CFLAGS@ |
8 LIBS = @LIBS@ | 8 LIBS = @LIBS@ |
9 | 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) | 10 TARGETS = checkkeys$(EXE) graywin$(EXE) loopwave$(EXE) testalpha$(EXE) testbitmap$(EXE) testblitspeed$(EXE) testcdrom$(EXE) testdyngl$(EXE) testerror$(EXE) testgamma$(EXE) testgl$(EXE) testhread$(EXE) testjoystick$(EXE) testkeys$(EXE) testlock$(EXE) testoverlay2$(EXE) testoverlay$(EXE) testpalette$(EXE) testplatform$(EXE) testsem$(EXE) testsprite$(EXE) testtimer$(EXE) testver$(EXE) testvidinfo$(EXE) testwin$(EXE) testwm$(EXE) threadwin$(EXE) torturethread$(EXE) |
11 | 11 |
12 all: $(TARGETS) | 12 all: $(TARGETS) |
13 | 13 |
14 checkkeys$(EXE): $(srcdir)/checkkeys.c | 14 checkkeys$(EXE): $(srcdir)/checkkeys.c |
15 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 15 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
30 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 30 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
31 | 31 |
32 testcdrom$(EXE): $(srcdir)/testcdrom.c | 32 testcdrom$(EXE): $(srcdir)/testcdrom.c |
33 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 33 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
34 | 34 |
35 testcpuinfo$(EXE): $(srcdir)/testcpuinfo.c | |
36 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
37 | |
38 testdyngl$(EXE): $(srcdir)/testdyngl.c | 35 testdyngl$(EXE): $(srcdir)/testdyngl.c |
39 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
40 | |
41 testendian$(EXE): $(srcdir)/testendian.c | |
42 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 36 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
43 | 37 |
44 testerror$(EXE): $(srcdir)/testerror.c | 38 testerror$(EXE): $(srcdir)/testerror.c |
45 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 39 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
46 | 40 |
69 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 63 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
70 | 64 |
71 testpalette$(EXE): $(srcdir)/testpalette.c | 65 testpalette$(EXE): $(srcdir)/testpalette.c |
72 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | 66 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ |
73 | 67 |
68 testplatform$(EXE): $(srcdir)/testplatform.c | |
69 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
70 | |
74 testsem$(EXE): $(srcdir)/testsem.c | 71 testsem$(EXE): $(srcdir)/testsem.c |
75 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 72 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
76 | 73 |
77 testsprite$(EXE): $(srcdir)/testsprite.c | 74 testsprite$(EXE): $(srcdir)/testsprite.c |
78 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | 75 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ |
79 | 76 |
80 testtimer$(EXE): $(srcdir)/testtimer.c | 77 testtimer$(EXE): $(srcdir)/testtimer.c |
81 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
82 | |
83 testtypes$(EXE): $(srcdir)/testtypes.c | |
84 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 78 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
85 | 79 |
86 testver$(EXE): $(srcdir)/testver.c | 80 testver$(EXE): $(srcdir)/testver.c |
87 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 81 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
88 | 82 |