aboutsummaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: 8634a5cc44f8205e55292afff542ef9c34e43d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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

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

.PHONY : clean all