summaryrefslogtreecommitdiff
path: root/tools/kconf/Makefile
blob: 533a6ac7e685cfe29dcab64c8b042a4ce559049f (plain)
1
2
3
4
5
6
7
8
9
kconf:
	bison -d grammar.y
	flex scan.l
	gcc lex.yy.c grammar.tab.c -lfl -o kconf

clean:
	rm grammar.tab.*
	rm lex.yy.c
	rm kconf