Makefile.os2 400 B

123456789101112131415161718
  1. # Open Watcom makefile to build SDL2 tests for OS/2
  2. # wmake -f Makefile.os2
  3. #
  4. # To error out upon warnings: wmake -f Makefile.os2 ENABLE_WERROR=1
  5. SYSTEM = os2v2
  6. INCPATH = -I"$(%WATCOM)/h/os2" -I"$(%WATCOM)/h"
  7. CFLAGS = -bt=os2 -d0 -q -bm -5s -fp5 -fpi87 -sg -oteanbmier -ei
  8. CFLAGS+= -wx -wcd=303
  9. !ifeq ENABLE_WERROR 1
  10. CFLAGS+= -we
  11. !endif
  12. TNSRCS = testnative.c testnativeos2.c
  13. !include watcom.mif