Files
vhdl/lib/CPUs/JCpu/Makefile
T
jens bd5ea68dda - improved tools install
git-svn-id: http://moon:8086/svn/vhdl/trunk@1577 cc03376c-175c-47c8-b038-4cd826a8556b
2021-03-29 14:17:51 +00:00

18 lines
256 B
Makefile

include $(VHDL_HOME)/make/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)