#
# This variable indicated the location of the root of the coral tree. You must 
# set this to your location.
#
include $(CORALROOT)/make_include

all: Coral.c
	 time make -k -f Explain-make Explain

Coral.c: Coral.S Coral.h 
	$(CORALROOT)/interface/translator -i Coral.S -o Coral.c -c Explain.P

make:
	ibmkmf Explain
	make depend

etags:
	csh -c "/usr/gnu/bin/etags {ModuleWindow,MainWindow,Derivation,Node}.[ch]"

clean:
	/bin/rm -f *.o *~ core Coral.c *.bak Explain Explain-make

depend:
	make -f Explain-make explain_dep

