Mercurial > sdl-ios-xcode
comparison test/Makefile.wat @ 1190:173c063d4f55
OS/2 port!
This was mostly, if not entirely, written by "Doodle" and "Caetano":
doodle@scenergy.dfmk.hu
daniel@caetano.eng.br
--ryan.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 23 Nov 2005 07:29:56 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1189:c96b326b90ba | 1190:173c063d4f55 |
---|---|
1 #============================================================================= | |
2 # This is a Watcom makefile to build SDL.DLL for OS/2 | |
3 # | |
4 # Makefile for test applications | |
5 #============================================================================= | |
6 | |
7 # Create debug build or not? | |
8 debug_build=defined | |
9 | |
10 #----------------------------------------------------------------------------- | |
11 # The next part is somewhat general, for creation of EXE files. | |
12 #----------------------------------------------------------------------------- | |
13 | |
14 cflags = $(debugflags) -bm -bt=OS2 -5 -fpi -sg -otexan -wx -ei | |
15 | |
16 .before | |
17 set include=$(%os2tk)\h;$(%include);../include | |
18 | |
19 .extensions: | |
20 .extensions: .exe .obj .c | |
21 | |
22 all : testalpha.exe & | |
23 testbitmap.exe & | |
24 testcdrom.exe & | |
25 testcpuinfo.exe & | |
26 testjoystick.exe & | |
27 testkeys.exe & | |
28 testlock.exe & | |
29 testsem.exe & | |
30 testsprite.exe & | |
31 testtimer.exe & | |
32 testtypes.exe & | |
33 testver.exe & | |
34 testvidinfo.exe & | |
35 testwin.exe & | |
36 testwm.exe & | |
37 threadwin.exe & | |
38 torturethread.exe & | |
39 checkkeys.exe | |
40 | |
41 .c.obj : .AUTODEPEND | |
42 wcc386 -zq -bm -5s -ei -oteaxan -wx $[* $(cflags) | |
43 | |
44 .obj.exe : .AUTODEPEND | |
45 wlink system os2v2 F $* L ..\src\sdl.lib name $@ op quiet | |
46 | |
47 clean : .SYMBOLIC | |
48 @if exist *.exe del *.exe | |
49 @if exist *.obj del *.obj | |
50 @if exist *.map del *.map | |
51 @if exist *.res del *.res | |
52 @if exist *.lst del *.lst |