all: gboggle
	echo all up to date

gboggle: gboggle.c eval.o
	cc -Wall -o gboggle gboggle.c eval.o ../gtboggle/dyntrie.o -I../spell -I../spell/SpellLib  -L../spell -lspell

eval.o: eval.c
	cc -Wall -c eval.c -I../spell -I../spell/SpellLib

html: gboggle.c eval.c
	ctohtml gboggle.c > gboggle.c.html
	ctohtml eval.c > eval.c.html

clean:
	rm *.o gboggle
