# usage is nmake PRG=programname
# MSC 16 Bit Compiler required
all: ..\$(PRG).com

..\$(PRG).com: $(PRG).c MAKEFILE
     cl /AT $(PRG).c
     move $(PRG).com ..\\
     del $(PRG).obj
