summaryrefslogtreecommitdiff
path: root/Makefile
blob: d37e9233ec02955978cd722232a4a0497b291cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
override CFLAGS += -Wall -Wextra -Wwrite-strings -Wswitch-enum -Wno-unused

glcpp: glcpp.o glcpp-lex.o glcpp-parse.o hash_table.o

%.c %.h: %.y
	bison --debug --defines=$*.h --output=$*.c $^

%.c: %.l
	flex --outfile=$@ $<

glcpp-lex.c: glcpp-parse.h

clean:
	rm -f glcpp-lex.c glcpp-parse.c *.o *~