Mercurial > sdl-ios-xcode
comparison test/Makefile.in @ 3794:db24e43972ac SDL-ryan-multiple-audio-device
Test program to play audio to every available device, one at a time, then all
at once.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Tue, 03 Oct 2006 23:45:36 +0000 |
parents | e2f68b579a01 |
children |
comparison
equal
deleted
inserted
replaced
3793:2b4795e92b62 | 3794:db24e43972ac |
---|---|
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) 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) | 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) 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: 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 $@ |
22 | 22 |
23 loopwave$(EXE): $(srcdir)/loopwave.c | 23 loopwave$(EXE): $(srcdir)/loopwave.c |
24 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 24 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
25 | 25 |
26 testaudioinfo$(EXE): $(srcdir)/testaudioinfo.c | 26 testaudioinfo$(EXE): $(srcdir)/testaudioinfo.c |
27 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
28 | |
29 testmultiaudio$(EXE): $(srcdir)/testmultiaudio.c | |
27 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 30 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
28 | 31 |
29 testalpha$(EXE): $(srcdir)/testalpha.c | 32 testalpha$(EXE): $(srcdir)/testalpha.c |
30 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | 33 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ |
31 | 34 |