comparison Watcom.mif @ 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 file contains the common includes for the
3 # Watcom makefiles to build SDL.DLL for OS/2
4 #
5 #
6 #=============================================================================
7
8 # Create debug build or not?
9 #debug_build=defined
10
11 # Special flags for building SDL
12 SDLCFlags = -dBUILD_SDL -dCHECK_LEAKS
13
14 #
15 #==============================================================================
16 #
17
18 !ifdef debug_build
19 debugflags = -d2 -dDEBUG_BUILD
20 !else
21 debugflags =
22 !endif
23
24 cflags = -zq $(debugflags) -bd -bm -bt=OS2 -5s -fpi -sg -otexan -wx -ei $(SDLCFlags) $(ExtraCFlags)
25
26 .extensions:
27 .extensions: .lib .dll .obj .c .asm
28
29 .c.obj : .AUTODEPEND
30 wcc386 $[* $(cflags)
31
32 .asm.obj : .AUTODEPEND
33 nasm -t -O2 -f obj -I$(%include) $[*.asm