parser-c 0.3.0

Macros for parser-c.
Documentation
1
2
3
4
5
6
7
8
9
10
SCANFILE=../../../examples/ScanFile
all:
	$(SCANFILE) ident_kinds.c > ident_kinds.out
	diff -u ident_kinds.expect ident_kinds.out
	$(SCANFILE) tentative.c > tentative.out
	diff -u tentative.expect tentative.out
	$(SCANFILE) globreg.c > globreg.out
	diff -u globreg.expect globreg.out
clean:
	rm -rf *.out