comparison test/Makefile.in @ 1914:051df511279c

Added a test program framework for easy initialization. Started work on multi-window OpenGL demo
author Sam Lantinga <slouken@libsdl.org>
date Tue, 18 Jul 2006 07:49:51 +0000
parents c121d94672cb
children a228436a2404
comparison
equal deleted inserted replaced
1913:83420da906a5 1914:051df511279c
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) testcursor$(EXE) testdyngl$(EXE) testerror$(EXE) testfile$(EXE) testgamma$(EXE) testgl$(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) 10 TARGETS = checkkeys$(EXE) graywin$(EXE) loopwave$(EXE) testalpha$(EXE) testbitmap$(EXE) testblitspeed$(EXE) testcdrom$(EXE) testcursor$(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)
11 11
12 all: $(TARGETS) 12 all: Makefile $(TARGETS)
13
14 Makefile: $(srcdir)/Makefile.in
15 $(SHELL) config.status $@
13 16
14 checkkeys$(EXE): $(srcdir)/checkkeys.c 17 checkkeys$(EXE): $(srcdir)/checkkeys.c
15 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 18 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
16 19
17 graywin$(EXE): $(srcdir)/graywin.c 20 graywin$(EXE): $(srcdir)/graywin.c
48 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ 51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@
49 52
50 testgl$(EXE): $(srcdir)/testgl.c 53 testgl$(EXE): $(srcdir)/testgl.c
51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@ 54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
52 55
56 testgl2$(EXE): $(srcdir)/testgl2.c
57 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@
58
53 testhread$(EXE): $(srcdir)/testhread.c 59 testhread$(EXE): $(srcdir)/testhread.c
54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 60 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
55 61
56 testiconv$(EXE): $(srcdir)/testiconv.c 62 testiconv$(EXE): $(srcdir)/testiconv.c
57 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 63 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
81 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 87 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
82 88
83 testsprite$(EXE): $(srcdir)/testsprite.c 89 testsprite$(EXE): $(srcdir)/testsprite.c
84 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ 90 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@
85 91
86 testsprite2$(EXE): $(srcdir)/testsprite2.c 92 testsprite2$(EXE): $(srcdir)/testsprite2.c $(srcdir)/common.c
87 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ 93 $(CC) -o $@ $(srcdir)/testsprite2.c $(srcdir)/common.c $(CFLAGS) $(LIBS) @MATHLIB@
88 94
89 testtimer$(EXE): $(srcdir)/testtimer.c 95 testtimer$(EXE): $(srcdir)/testtimer.c
90 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 96 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
91 97
92 testver$(EXE): $(srcdir)/testver.c 98 testver$(EXE): $(srcdir)/testver.c