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

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