# file to make make
name=make.exe
parts= make.obj makeutil.obj reader.obj machdep.obj
lflags= /stack:4096
#cflags=

#.c.obj :; msc $(CFLAGS) $*;
#.asm.obj :; masm $(MFLAGS) $*;
#cc = msc

$(name):$(parts)
	link $(lflags) $(parts), $@;

clean: 
	del *.bak

make.obj : make.c make.h rules.h
makeutil.obj: makeutil.c make.h defcom.h
reader.obj: reader.c make.h
machdep.obj: machdep.c make.h
