This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
formal_hw_verification
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
6
Wiki
Activity
Browse Source
Add simple top levem Makefile & test list
master
T. Meissner
4 years ago
parent
667601fd5e
commit
f4029a24ec
2 changed files
with
18 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
Makefile
+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
Write
Preview
Loading…
Cancel
Save