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.
24 lines
624 B
24 lines
624 B
# Makefile for MS-DOS using Watcom compiler. |
|
# |
|
# wmake -f Makefile.dos |
|
# - builds using the static library xmp_static.lib |
|
# |
|
target = static |
|
# change libxmp_path as needed (or specify on the wmake cmdline) |
|
!ifndef libxmp_path |
|
libxmp_path = ../libxmp |
|
!endif |
|
|
|
CC=wcc386 |
|
# SYSTEM can be dos32a, causeway or dos4g: |
|
SYSTEM=dos32a |
|
|
|
CFLAGS = -bt=dos -fp5 -fpi87 -mf -oeatxh -w4 -zp8 -ei -q |
|
# newer OpenWatcom versions enable W303 by default. |
|
CFLAGS += -wcd=303 |
|
# -5s : Pentium stack calling conventions. |
|
# -5r : Pentium register calling conventions. |
|
CFLAGS += -5s |
|
INCLUDES = -I"src/watcom" -I"$(%WATCOM)/h" |
|
|
|
!include watcom.mif
|
|
|