# Keeping things relatively simple for now.


CFLAGS = "-Wall"


celltype.h celltype.c: makecelltype
	./makecelltype celltype.h

makecelltype: makecelltype.c

.PHONY : clean
clean :
	-rm edit makecelltype celltype.h celltype.c
