diff options
Diffstat (limited to 'tools/kconf/Makefile')
-rw-r--r-- | tools/kconf/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/kconf/Makefile b/tools/kconf/Makefile new file mode 100644 index 0000000..c6df7ee --- /dev/null +++ b/tools/kconf/Makefile @@ -0,0 +1,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 |