parser-c 0.3.0

Macros for parser-c.
Documentation
1
2
3
4
5
6
7
8
9
10
11
PROJECT_DIR=../../..
OPT=-O2
include $(PROJECT_DIR)/test/config.mk
all:
	$(HC) $(HFLAGS) --make Test.hs
	./Test > test.c
	gcc -o test_out test.c
	./test_out > test.out
	diff test.expect test.out
clean:
	rm -rf Test test.c test_out *.o *.hi *.dyn_hi *.dyn_o *.out