From d4055d119b8db9937d17d43b6234c10057ba30b2 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sat, 6 Jan 2018 20:15:55 +0100 Subject: add J1eForth --- j1eforth/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 j1eforth/Makefile (limited to 'j1eforth/Makefile') diff --git a/j1eforth/Makefile b/j1eforth/Makefile new file mode 100644 index 0000000..5ee12db --- /dev/null +++ b/j1eforth/Makefile @@ -0,0 +1,13 @@ +all: j1 j1.bin j1.hex + +j1: j1.c + gcc -o j1 j1.c -lwpcap + strip -s j1 +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 -- cgit v1.2.3