aboutsummaryrefslogtreecommitdiff
path: root/tools/kconf/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-06-24 23:00:41 -0400
committerIan Moffett <ian@osmora.org>2024-06-24 23:00:41 -0400
commit963478ff0ad358fc3a44ff5dba0c64ddc889f296 (patch)
treea14c3ea6feb7d1b783364737fcefabce249473ff /tools/kconf/Makefile
parent236963e7563be3e3f8220dac7bb4af446928e194 (diff)
parent6f6a36d1e8b3dd50cb4d394fa1de4888663b4ea5 (diff)
Import hyra expt
Diffstat (limited to 'tools/kconf/Makefile')
-rw-r--r--tools/kconf/Makefile9
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