comparison test/Makefile.in @ 3892:b25dd008167b SDL-1.2

Added a test program for loadso subsystem.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 07 Nov 2006 14:31:25 +0000
parents d3ac464fb3c1
children 3ccd06fc22e5
comparison
equal deleted inserted replaced
3891:2b5c30359c1d 3892:b25dd008167b
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) testtimer$(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) 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) testtimer$(EXE) testver$(EXE) testvidinfo$(EXE) testwin$(EXE) testwm$(EXE) threadwin$(EXE) torturethread$(EXE) testloadso$(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)
102 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 102 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
103 103
104 torturethread$(EXE): $(srcdir)/torturethread.c 104 torturethread$(EXE): $(srcdir)/torturethread.c
105 $(CC) -o $@ $? $(CFLAGS) $(LIBS) 105 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
106 106
107 testloadso$(EXE): $(srcdir)/testloadso.c
108 $(CC) -o $@ $? $(CFLAGS) $(LIBS)
109
107 110
108 clean: 111 clean:
109 rm -f $(TARGETS) 112 rm -f $(TARGETS)
110 113
111 distclean: clean 114 distclean: clean