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