File: Makefile.os2

package info (click to toggle)
libsdl2 2.26.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 80,452 kB
  • sloc: ansic: 293,898; cpp: 188,785; objc: 10,375; xml: 6,368; sh: 5,171; perl: 1,998; makefile: 944; asm: 661; javascript: 286; python: 109
file content (18 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Open Watcom makefile to build SDL2 tests for OS/2
# wmake -f Makefile.os2
#
# To error out upon warnings: wmake -f Makefile.os2 ENABLE_WERROR=1

SYSTEM = os2v2

INCPATH = -I"$(%WATCOM)/h/os2" -I"$(%WATCOM)/h"

CFLAGS = -bt=os2 -d0 -q -bm -5s -fp5 -fpi87 -sg -oteanbmier -ei
CFLAGS+= -wx -wcd=303
!ifeq ENABLE_WERROR 1
CFLAGS+= -we
!endif

TNSRCS = testnative.c testnativeos2.c

!include watcom.mif