#----------------------------------------------------------------------------
# Makefile for FIXDS.EXE (for old MAKE)
#----------------------------------------------------------------------------

fixds.obj:  fixds.c
    cl -AS -c -Fc -G2c -Ox -W3 -Zp $*.c

# for debugging:
#   cl -AS -c -Fc -G2c -Od -W3 -Zip $*.c

#----------------------------------------------------------------------------

fixds.exe:  fixds.obj
    link fixds, , , /nodef:slibce slibcer;

# for debugging:
#   link fixds, , , /nodef:slibce slibcer /co;

# If you have real mode libraries under the default names, use:
#   link fixds;    (with or without the /co)

#----------------------------------------------------------------------------

