#
#
#

test-all	:	test-compiler	test-interpriter

test-interpriter	:	h	hello.h
	echo test-interpriter
	./h < hello.h

test-compiler	:	hello
	echo test-compiler
	./hello

hello	:	hello.c
	cc -o hello hello.c

hello.c	:	hc	hello.h
	./hc < hello.h > hello.c

hc		:	hc.c
	cc -o hc hc.c

#
#
#

clean	:
	\rm hc h hello hello.c

#
#
#






