Add interface2

This commit is contained in:
Andrew Kay
2021-03-29 16:38:00 -05:00
parent fce3b4c273
commit 925830f0a4
107 changed files with 54855 additions and 24 deletions

13
interface2/fpga/Makefile Normal file
View File

@@ -0,0 +1,13 @@
SUBDIRS = tests rtl
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done
.PHONY: all $(SUBDIRS) clean