#  MultiScope (tm) Debugger Tutorial Program
#  Copyright (C) 1990 MultiScope, Inc.
#
#  This is the makefile for the tutorial program.

tutor.obj: tutor.c tutor.h
	cl -qc -Zri -AL -c tutor.c

dbase.obj: dbase.c tutor.h
	cl -qc -Zri -AL -c dbase.c

tutor.exe: tutor.obj dbase.obj 
	link tutor dbase,,,lmedc llibce/nod/noe/co;

