Mercurial > sdl-ios-xcode
comparison test/Makefile.in @ 1453:2eb75f8a32ca
Date: Mon, 27 Feb 2006 17:01:43 +0100
From: "William Petiot [exoide]"
Subject: Re: [SDL] cvs version: standard win32 SDL.DLL file test [patch]
I found a bug or two in previous patch, so here is a patch to correct this.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 27 Feb 2006 19:19:22 +0000 |
parents | 638da75f9ab8 |
children | 73dc5d39bbf8 |
comparison
equal
deleted
inserted
replaced
1452:b7184889c1cb | 1453:2eb75f8a32ca |
---|---|
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) 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) 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) |
34 | 34 |
35 testdyngl$(EXE): $(srcdir)/testdyngl.c | 35 testdyngl$(EXE): $(srcdir)/testdyngl.c |
36 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 36 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
37 | 37 |
38 testerror$(EXE): $(srcdir)/testerror.c | 38 testerror$(EXE): $(srcdir)/testerror.c |
39 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | |
40 | |
41 testfile$(EXE): $(srcdir)/testfile.c | |
39 $(CC) -o $@ $? $(CFLAGS) $(LIBS) | 42 $(CC) -o $@ $? $(CFLAGS) $(LIBS) |
40 | 43 |
41 testgamma$(EXE): $(srcdir)/testgamma.c | 44 testgamma$(EXE): $(srcdir)/testgamma.c |
42 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ | 45 $(CC) -o $@ $? $(CFLAGS) $(LIBS) @MATHLIB@ |
43 | 46 |