###############################################################################
#									      #
#    NMAKE script for long filename demonstration program		      #
#									      #
#    For use with Microsoft C8 (16-bit) and MASM 6.1			      #
#									      #
###############################################################################

all: test.exe

.c.obj:
   cl -c -Zi -Od -G3 $*.c

.asm.obj:
   \masm611\bin\ml -c -Zi -DMODEL=small $*.asm

test.obj: longname.h

test.exe: test.obj longname.obj replace.obj
   link /noe /co test longname replace,$@;
