aboutsummaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: a166da142260a007924b29aaeb64e3bb8d1a0ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ../Makefile.config

include Makefile.tools

all : $(TOOLS)

# I know, this can be done better...
%.o : *.h

wasm_compile : wasm_compile.o assemble.o parse_module.o translate.o

VGAdump2ppm : VGAdump2ppm.o

bin2hex : bin2hex.o

clean :
	rm *.o 2>/dev/null || true
	find . -executable -type f -delete

.PHONY : clean all