🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
494 B

  1. # Open Watcom makefile to build SDL2 tests for Win32
  2. # wmake -f Makefile.w32
  3. #
  4. # To error out upon warnings: wmake -f Makefile.w32 ENABLE_WERROR=1
  5. SYSTEM = nt
  6. INCPATH = -I"$(%WATCOM)/h/nt" -I"$(%WATCOM)/h" -I"../src/video/khronos"
  7. CFLAGS = -bt=nt -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. CFLAGS+= -DSDL_MAIN_HANDLED
  13. CFLAGS+= -DHAVE_OPENGL
  14. GLLIBS = opengl32.lib
  15. TNSRCS = testnative.c testnativew32.c
  16. !include watcom.mif