diff options
author | dan <[email protected]> | 2023-05-25 11:33:14 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-25 11:33:14 -0400 |
commit | 742bcacc541e76ea2a982a8f14aafe48aae33dec (patch) | |
tree | 5141b2db71b1cf660d1aefea7031fee9a84c97c8 /makefile | |
parent | 40e23d550506659f7a33057bbbc23cb1cf0632f1 (diff) | |
download | forth-742bcacc541e76ea2a982a8f14aafe48aae33dec.tar.gz forth-742bcacc541e76ea2a982a8f14aafe48aae33dec.tar.bz2 forth-742bcacc541e76ea2a982a8f14aafe48aae33dec.zip |
docs: update readme.md ; add run-rlwrap makefile command; add rlwrap completions file
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..db42381 --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +build: + gcc forth.c optable.c stack.c -o forth +run: + ./forth +run-rlwrap: + rlwrap -r -f rlwrapcompletions.forth ./forth + |