INFORM = inform
IFLAGS = +include_path= '$$MAX_STATIC_DATA=65535' -D

all: bazic

token-table.h: tokens.dat mktokens.awk
	awk -f mktokens.awk tokens.dat > token-table.h

bazic: *.inf *.h token-table.h
	$(INFORM) $(IFLAGS) bazic.inf bazic.z5

