Files
vhdl/Makefile
T
jens f9051bc51c - refactored ISE makefiles
git-svn-id: http://moon:8086/svn/vhdl/trunk@1569 cc03376c-175c-47c8-b038-4cd826a8556b
2021-03-29 12:49:42 +00:00

24 lines
309 B
Makefile

FOLDER ?= lib
TARGETS = $(shell find $(FOLDER)/ -name "*.make")
INSTR := $(foreach number,$(TARGETS),make -C $(shell dirname $(number)) -f $(shell basename $(number)) $(MAKECMDGOALS) &&) true
all:
$(INSTR)
elaborate:
$(INSTR)
run:
$(INSTR)
run_wave:
$(INSTR)
clean:
$(INSTR)
mrproper:
$(INSTR)