equal
deleted
inserted
replaced
|
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 |