
# adjust all paths to your enviroment before trying to run nmake
#
# meaning is:
# LIBCOFF: directory where COFF libraries will be read from/copied to
# LIBOMF:  directory where OMF libraries will be read from/copied to
# INC32DIR: directory where MASM will search its include files
# INC16DIR: not used currently

# please note: the names of LIBCOFF and LIBOMF should be different
# in any case, because files may have equal names

# DMCDIR:  directory where Digital Mars Optlink can be found
# OWDIR:  Open Watcom installation directory. Required for WSOCK32

# ASM:       MASM 6.1 binary
# LINKBIN:   32 bit COFF linker
# LIBBIN:    32 bit COFF librarian
# RCBIN:     32 bit COFF resource compiler
# LINK16BIN: OMF linker
# LIB16BIN:  OMF librarian

# optional:
# DLL32DIR: additional dir where created dlls will be copied to
# TOOLSDIR: additional dir where created exes will be copied to

LIBCOFF=..\..\Lib
LIBOMF=..\..\LibOMF
INC32DIR=..\..\Include
INC16DIR=.

DMCDIR=\DM\Bin
OWDIR=\Watcom

ASM=ml.exe
LINKBIN=link.exe /FileAlign:0x200
LIBBIN=\PellesC\Bin\polib.exe
RCBIN=\PellesC\Bin\porc.exe
LINK16BIN=$(DMCDIR)\link.exe
#LINK16BIN=link16.exe
LIB16BIN=$(DMCDIR)\lib.exe
#LIB16BIN=lib16.exe

#DLL32DIR=
#TOOLSDIR=
