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