- added Makefile which calls all *.make

- fixed paths after refactoring


git-svn-id: http://moon:8086/svn/vhdl/trunk@1513 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2021-03-24 12:53:51 +00:00
parent 3bb2a235f5
commit 5e1f2c0642
7 changed files with 22 additions and 7 deletions
+15
View File
@@ -0,0 +1,15 @@
TARGETS = $(shell find lib/ -name "*.make")
INSTR := $(foreach number,$(TARGETS),make -C $(shell dirname $(number)) -f $(shell basename $(number)) $(MAKECMDGOALS) &&) true
all:
$(INSTR)
elaborate:
$(INSTR)
run:
$(INSTR)
clean:
$(INSTR)