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