#
# Makefile for script V1.1 using Turbo C 2.0
# I don't think this makefile will work with the make utility
# provided with Turbo C. Use a better one.
#
AS = tasm
ASFLAGS= /mx
CC= tcc
CFLAGS= -mt -M
LIBDIR= \tc\lib

script.com:	script.obj int21.obj
	tlink ${LIBDIR}\c0t script int21 /t/c/m,script,script,${LIBDIR}\cs.lib
