litesata/test: Add missing dependency on scrambler in bist_tb

This commit is contained in:
Olof Kindgren 2015-06-26 01:16:35 +02:00
parent ffb6081720
commit 52e6bf6987
1 changed files with 6 additions and 4 deletions

View File

@ -13,8 +13,7 @@ crc_tb:
$(CC) $(CFLAGS) $(INC) -o crc crc.c
$(CMD) crc_tb.py
scrambler_tb:
$(CC) $(CFLAGS) $(INC) -o scrambler scrambler.c
scrambler_tb: scrambler
$(CMD) scrambler_tb.py
cont_tb:
@ -26,7 +25,7 @@ link_tb:
command_tb:
$(CMD) command_tb.py
bist_tb:
bist_tb: scrambler
$(CMD) bist_tb.py
striping_tb:
@ -35,5 +34,8 @@ striping_tb:
mirroring_tb:
$(CMD) mirroring_tb.py
scrambler: scrambler.c
$(CC) $(CFLAGS) $(INC) -o $@ $<
clean:
rm crc scrambler *.vcd
rm -f crc scrambler *.vcd