aboutsummaryrefslogtreecommitdiff
path: root/docs/j1eforth/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/j1eforth/Makefile')
-rw-r--r--docs/j1eforth/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/j1eforth/Makefile b/docs/j1eforth/Makefile
new file mode 100644
index 0000000..0be1611
--- /dev/null
+++ b/docs/j1eforth/Makefile
@@ -0,0 +1,12 @@
+all: j1 j1.bin j1.hex
+
+j1: j1.c
+ gcc -o j1 j1.c
+j1.bin j1.hex: j1.4th
+ gforth ./j1.4th
+run: all
+ ./j1
+core: all
+ ./j1 core.4th
+clean:
+ rm -rf j1 j1.bin j1.hex