Mercurial > sdl-ios-xcode
comparison test/Makefile.in @ 1501:73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 13 Mar 2006 01:08:00 +0000 |
parents | 2eb75f8a32ca |
children | 1577404809f0 d3ac464fb3c1 |
comparison
equal
deleted
inserted
replaced
1500:f58c88a4dff5 | 1501:73dc5d39bbf8 |
---|---|
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) testdyngl$(EXE) testerror$(EXE) testfile$(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) | 10 TARGETS = checkkeys$(EXE) graywin$(EXE) loopwave$(EXE) testalpha$(EXE) testbitmap$(EXE) testblitspeed$(EXE) testcdrom$(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) |
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) |
46 | 46 |
47 testgl$(EXE): $(srcdir)/testgl.c | 47 testgl$(EXE): $(srcdir)/testgl.c |
48 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@ | 48 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @GLLIB@ @MATHLIB@ |
49 | 49 |
50 testhread$(EXE): $(srcdir)/testhread.c | 50 testhread$(EXE): $(srcdir)/testhread.c |
51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
52 | |
53 testiconv$(EXE): $(srcdir)/testiconv.c | |
51 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
52 | 55 |
53 testjoystick$(EXE): $(srcdir)/testjoystick.c | 56 testjoystick$(EXE): $(srcdir)/testjoystick.c |
54 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 57 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
55 | 58 |