diff options
-rw-r--r-- | tools/kconf/Makefile | 6 | ||||
-rw-r--r-- | tools/kconf/grammar.y (renamed from tools/kconf/grammer.y) | 0 | ||||
-rw-r--r-- | tools/kconf/scan.l | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tools/kconf/Makefile b/tools/kconf/Makefile index c6df7ee..533a6ac 100644 --- a/tools/kconf/Makefile +++ b/tools/kconf/Makefile @@ -1,9 +1,9 @@ kconf: - bison -d grammer.y + bison -d grammar.y flex scan.l - gcc lex.yy.c grammer.tab.c -lfl -o kconf + gcc lex.yy.c grammar.tab.c -lfl -o kconf clean: - rm grammer.tab.* + rm grammar.tab.* rm lex.yy.c rm kconf diff --git a/tools/kconf/grammer.y b/tools/kconf/grammar.y index 2f131fc..2f131fc 100644 --- a/tools/kconf/grammer.y +++ b/tools/kconf/grammar.y diff --git a/tools/kconf/scan.l b/tools/kconf/scan.l index e416241..11c9d70 100644 --- a/tools/kconf/scan.l +++ b/tools/kconf/scan.l @@ -30,7 +30,7 @@ %{ #include <stdio.h> #include <stdlib.h> - #include "grammer.tab.h" + #include "grammar.tab.h" int yyerror(char *e); %} |