include $(VHDL_HOME)/defs.mk
TOOL_PATH := $(VHDL_HOME)/tools/jcpu

.PHONY: install uninstall
all: install

$(TOOL_PATH):
	mkdir -p $@	
	
install: $(TOOL_PATH)
	cp -r tools/* $(TOOL_PATH)
	chmod +x $(TOOL_PATH)/*.rb

uninstall: 
	rm -rf $(TOOL_PATH)


