aboutsummaryrefslogtreecommitdiff
path: root/j1eforth/Makefile
blob: 0be1611934719a3229893ed923fb10964ef2a10a (plain)
1
2
3
4
5
6
7
8
9
10
11
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