COMPILE_ET=	compile_et

.SUFFIXES: .h .c .et

all:: dict_errs.h dict_errs.c

.et.c: $*.et
	$(COMPILE_ET) $*.et

.et.h: $*.et
	$(COMPILE_ET) $*.et

clean::
	$(RM) *.c *.h
	
DependTarget()
