summaryrefslogtreecommitdiff
path: root/third_party/linenoise/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/linenoise/Makefile')
-rw-r--r--third_party/linenoise/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/linenoise/Makefile b/third_party/linenoise/Makefile
new file mode 100644
index 0000000..a285410
--- /dev/null
+++ b/third_party/linenoise/Makefile
@@ -0,0 +1,7 @@
+linenoise_example: linenoise.h linenoise.c
+
+linenoise_example: linenoise.c example.c
+ $(CC) -Wall -W -Os -g -o linenoise_example linenoise.c example.c
+
+clean:
+ rm -f linenoise_example