Torque3D/Engine/lib/sdl/test/Makefile.os2

20 lines
425 B
Text
Raw Normal View History

# 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"
2019-08-19 23:30:35 -05:00
CFLAGS = -bt=os2 -d0 -q -bm -5s -fp5 -fpi87 -sg -oteanbmier -ei
CFLAGS+= -wx -wcd=303
CFLAGS+= -DHAVE_SIGNAL_H
!ifeq ENABLE_WERROR 1
CFLAGS+= -we
!endif
2019-08-19 23:30:35 -05:00
TNSRCS = testnative.c testnativeos2.c
2019-08-19 23:30:35 -05:00
!include watcom.mif