aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authordan <[email protected]>2023-05-26 14:59:16 -0400
committerdan <[email protected]>2023-05-26 14:59:16 -0400
commit2b7ea0857da80e1353ce0a72239093f108fdc1e9 (patch)
treebdcfe9a653c94d0385cea58156225149f92dc3ad /makefile
parent4e26b8c0a1b7fc843741105d57da863997e7284b (diff)
downloadforth-2b7ea0857da80e1353ce0a72239093f108fdc1e9.tar.gz
forth-2b7ea0857da80e1353ce0a72239093f108fdc1e9.tar.bz2
forth-2b7ea0857da80e1353ce0a72239093f108fdc1e9.zip
refactor: if and : moved to optable too
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index db42381..db37b0e 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
build:
- gcc forth.c optable.c stack.c -o forth
+ clang forth.c optable.c stack.c -o ./forth -Wall
run:
./forth
run-rlwrap: