Trying to verify Verilog/VHDL designs with formal methods and tools
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
193 B

  1. DESIGNS := $(shell cat tests.txt)
  2. .PHONY: ${DESIGNS} all clean
  3. all: ${DESIGNS}
  4. $(DESIGNS):
  5. make -C $@ all -j$(nproc)
  6. clean:
  7. for dir in $(DESIGNS); do \
  8. make -C $$dir clean; \
  9. done