From 7467d81909b468910999930020087897a7fcb541 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 29 Mar 2021 13:28:52 +0000 Subject: [PATCH] - improved git-svn-id: http://moon:8086/svn/vhdl/trunk@1572 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/CPUs/JCpu/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/CPUs/JCpu/Makefile b/lib/CPUs/JCpu/Makefile index 2e8a59c..921d03f 100644 --- a/lib/CPUs/JCpu/Makefile +++ b/lib/CPUs/JCpu/Makefile @@ -1,8 +1,16 @@ include $(VHDL_HOME)/make/defs.mk +TOOL_PATH := $(VHDL_HOME)/tools/jcpu/jasm +.PHONY: install uninstall all: install -install: - mkdir -p $(VHDL_HOME)/tools/jasm - cp -r tools/* $(VHDL_HOME)/tools/jasm +$(TOOL_PATH): + mkdir -p $@ +install: $(TOOL_PATH) + cp -r tools/* $(TOOL_PATH) + +uninstall: + rm -rf $(TOOL_PATH) + +