Browse Source

Add simple top levem Makefile & test list

master
T. Meissner 3 years ago
parent
commit
f4029a24ec
2 changed files with 18 additions and 0 deletions
  1. +13
    -0
      Makefile
  2. +5
    -0
      tests.txt

+ 13
- 0
Makefile View File

@ -0,0 +1,13 @@
DESIGNS := $(file < tests.txt)
.PHONY: ${DESIGNS} all clean
all: ${DESIGNS}
$(DESIGNS):
make -C $@ all -j$(nproc)
clean:
for dir in $(DESIGNS); do \
make -C $$dir clean; \
done

+ 5
- 0
tests.txt View File

@ -0,0 +1,5 @@
alu \
counter \
fifo \
vai_fifo \
vai_reg

Loading…
Cancel
Save