Mercurial > sdl-ios-xcode
comparison test/Makefile.in @ 2914:fa109e90be36
Correct the test program
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 24 Dec 2008 13:04:18 +0000 |
parents | 8be863ef68ee |
children | 7563b99e9a49 |
comparison
equal
deleted
inserted
replaced
2913:ffae53de58f4 | 2914:fa109e90be36 |
---|---|
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) testaudioinfo$(EXE) testmultiaudio$(EXE) testalpha$(EXE) testbitmap$(EXE) testblitspeed$(EXE) testcdrom$(EXE) testcursor$(EXE) testdyngl$(EXE) testerror$(EXE) testfile$(EXE) testfill2$(EXE) testgamma$(EXE) testgl$(EXE) testgl2$(EXE) testhread$(EXE) testiconv$(EXE) testjoystick$(EXE) testkeys$(EXE) testlines2$(EXE) testlock$(EXE) testoverlay2$(EXE) testoverlay$(EXE) testpalette$(EXE) testplatform$(EXE) testsem$(EXE) testsprite$(EXE) testsprite2$(EXE) testtimer$(EXE) testver$(EXE) testvidinfo$(EXE) testwin$(EXE) testwm$(EXE) testwm2$(EXE) threadwin$(EXE) torturethread$(EXE) testloadso$(EXE) testhaptic$(EXE) testmmousetablet$(EXE) | 10 TARGETS = checkkeys$(EXE) graywin$(EXE) loopwave$(EXE) testaudioinfo$(EXE) testmultiaudio$(EXE) testalpha$(EXE) testbitmap$(EXE) testblitspeed$(EXE) testcdrom$(EXE) testcursor$(EXE) testdraw2$(EXE) testdyngl$(EXE) testerror$(EXE) testfile$(EXE) testgamma$(EXE) testgl$(EXE) testgl2$(EXE) testhread$(EXE) testiconv$(EXE) testjoystick$(EXE) testkeys$(EXE) testlock$(EXE) testoverlay2$(EXE) testoverlay$(EXE) testpalette$(EXE) testplatform$(EXE) testsem$(EXE) testsprite$(EXE) testsprite2$(EXE) testtimer$(EXE) testver$(EXE) testvidinfo$(EXE) testwin$(EXE) testwm$(EXE) testwm2$(EXE) threadwin$(EXE) torturethread$(EXE) testloadso$(EXE) testhaptic$(EXE) testmmousetablet$(EXE) |
11 | 11 |
12 all: Makefile $(TARGETS) | 12 all: Makefile $(TARGETS) |
13 | 13 |
14 Makefile: $(srcdir)/Makefile.in | 14 Makefile: $(srcdir)/Makefile.in |
15 $(SHELL) config.status $@ | 15 $(SHELL) config.status $@ |
42 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 42 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
43 | 43 |
44 testcursor$(EXE): $(srcdir)/testcursor.c | 44 testcursor$(EXE): $(srcdir)/testcursor.c |
45 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 45 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
46 | 46 |
47 testdraw2$(EXE): $(srcdir)/testdraw2.c $(srcdir)/common.c | |
48 $(CC) -o $@ $(srcdir)/testdraw2.c $(srcdir)/common.c $(CFLAGS) $(LIBS) | |
49 | |
47 testdyngl$(EXE): $(srcdir)/testdyngl.c | 50 testdyngl$(EXE): $(srcdir)/testdyngl.c |
48 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
49 | 52 |
50 testerror$(EXE): $(srcdir)/testerror.c | 53 testerror$(EXE): $(srcdir)/testerror.c |
51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
52 | 55 |
53 testfile$(EXE): $(srcdir)/testfile.c | 56 testfile$(EXE): $(srcdir)/testfile.c |
54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 57 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
55 | |
56 testfill2$(EXE): $(srcdir)/testfill2.c $(srcdir)/common.c | |
57 $(CC) -o $@ $(srcdir)/testfill2.c $(srcdir)/common.c $(CFLAGS) $(LIBS) | |
58 | 58 |
59 testgamma$(EXE): $(srcdir)/testgamma.c | 59 testgamma$(EXE): $(srcdir)/testgamma.c |
60 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | 60 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ |
61 | 61 |
62 testgl$(EXE): $(srcdir)/testgl.c | 62 testgl$(EXE): $(srcdir)/testgl.c |
74 testjoystick$(EXE): $(srcdir)/testjoystick.c | 74 testjoystick$(EXE): $(srcdir)/testjoystick.c |
75 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 75 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
76 | 76 |
77 testkeys$(EXE): $(srcdir)/testkeys.c | 77 testkeys$(EXE): $(srcdir)/testkeys.c |
78 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 78 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
79 | |
80 testlines2$(EXE): $(srcdir)/testlines2.c $(srcdir)/common.c | |
81 $(CC) -o $@ $(srcdir)/testlines2.c $(srcdir)/common.c $(CFLAGS) $(LIBS) | |
82 | 79 |
83 testlock$(EXE): $(srcdir)/testlock.c | 80 testlock$(EXE): $(srcdir)/testlock.c |
84 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 81 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
85 | 82 |
86 testoverlay2$(EXE): $(srcdir)/testoverlay2.c | 83 testoverlay2$(EXE): $(srcdir)/testoverlay2.c |