#
# SAS/C Makefile for chunker
#
#

LINKER = SC LINK
LINKOPS = NOCHECKABORT

all: deea ea

ea.o: ea.c ea.h machine.h

deea.o: deea.c deea.h machine.h

machine.o: machine.c machine.h

ea: ea.o machine.o
	$(LINKER) $(LINKOPS) ea.o machine.o TO $@
	protect ea p add

deea: deea.o machine.o
	$(LINKER) $(LINKOPS) deea.o machine.o TO $@
	protect deea p add

clean:
	-delete \#?.o \#?.lnk
