mirror of
https://github.com/fairwaves/UHD-Fairwaves.git
synced 2025-11-03 05:23:14 +00:00
11 lines
276 B
Makefile
11 lines
276 B
Makefile
all: single dual
|
|
|
|
single:
|
|
iverilog -Wimplicit -Wportbind -c cmdfile ../top/single_u2_sim/single_u2_sim.v -o single_u2_sim
|
|
|
|
dual:
|
|
iverilog -Wimplicit -Wportbind -c cmdfile ../top/dual_u2_sim/dual_u2_sim.v -o dual_u2_sim
|
|
|
|
clean:
|
|
rm -f single_u2_sim dual_u2_sim *.vcd *.lxt
|