Files
vhdl/Makefile
T
jens 9c3fdb9862 - ghdl.mk copygtkw to build
- added mrproper

git-svn-id: http://moon:8086/svn/vhdl/trunk@1514 cc03376c-175c-47c8-b038-4cd826a8556b
2021-03-24 13:02:03 +00:00

19 lines
267 B
Makefile

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)
mrproper:
$(INSTR)