#
# Makefile for FUTIL
#
# Assumes NDMAKE 4.50 or a compatible MAKE utility
#

.asm.obj:
	${AS} ${AFLAGS} $*.asm;

OBJS=futil.obj
VPATH=

# Uncomment and comment out the appropriate section ...

# Following is the MASM version
#
#AS=masm
#LD=link
#AFLAGS=/ML /W2 /Zi
#LFLAGS=/CO/MAP/LI/NOI
#
#futil.com: ${OBJS}
#	${LD} ${LFLAGS} ${OBJS},futil.exe;
#	exe2bin futil.exe futil.com
#	del futil.exe
#
#
# Following is the TASM version
# Comment out the above and uncomment below ...
#
AS=tasm
LD=tlink
AFLAGS=/ml /zi
LFLAGS=/t /v /m

futil.com: ${OBJS}
	${LD} ${LFLAGS} ${OBJS}
