# ddklic makefile
# Copyright (C) 1998  Takashi Chikayama and Haruhiko Usa

all:
	cd compiler; make all

tests:	all
	cd compiler; make install
	cd test; make tests

clean:
	rm -f *~
	cd compiler; make clean
	cd test; make clean
	cd test/result; make clean

distclean: clean
	cd bin; make distclean
	cd test/result; make distclean

realclean: distclean

