summaryrefslogtreecommitdiff
path: root/tools/kconf/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-12-05 01:12:19 -0500
committerIan Moffett <ian@osmora.org>2024-12-05 01:12:19 -0500
commit07ddaa07aca2c75fef8b5234de0651535fbe5af0 (patch)
treedf6eb5f197bf635ad1b7d7f523f0d56ec1e6ed97 /tools/kconf/Makefile
parentdd9aad47f87b7043d3c0bf3fed80a25fdf188a23 (diff)
tools: kconf: Fix typo in filename
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'tools/kconf/Makefile')
-rw-r--r--tools/kconf/Makefile6
1 files changed, 3 insertions, 3 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