Files
vhdl/lib/CPUs/JCpu/Makefile
T
jens 7467d81909 - improved
git-svn-id: http://moon:8086/svn/vhdl/trunk@1572 cc03376c-175c-47c8-b038-4cd826a8556b
2021-03-29 13:28:52 +00:00

17 lines
233 B
Makefile

include $(VHDL_HOME)/make/defs.mk
TOOL_PATH := $(VHDL_HOME)/tools/jcpu/jasm
.PHONY: install uninstall
all: install
$(TOOL_PATH):
mkdir -p $@
install: $(TOOL_PATH)
cp -r tools/* $(TOOL_PATH)
uninstall:
rm -rf $(TOOL_PATH)