Increase MAX_STATIC_DATA
[bazic.git] / Makefile
1 INFORM = inform
2 IFLAGS = +include_path= '$$MAX_STATIC_DATA=65535' -D
3
4 all: bazic
5
6 token-table.h: tokens.dat mktokens.awk
7         awk -f mktokens.awk tokens.dat > token-table.h
8
9 bazic: *.inf *.h token-table.h
10         $(INFORM) $(IFLAGS) bazic.inf bazic.z5
11