litex/misoclib/mem/litesata/test/Makefile

34 lines
448 B
Makefile
Raw Normal View History

2015-01-16 17:52:41 -05:00
MSCDIR = ../../
PYTHON = python3
CMD = PYTHONPATH=$(MSCDIR) $(PYTHON)
CC=gcc
CFLAGS =-Wall -O0
phy_datapath_tb:
$(CMD) phy_datapath_tb.py
crc_tb:
$(CC) $(CFLAGS) $(INC) -o crc crc.c
2014-11-03 12:54:41 -05:00
$(CMD) crc_tb.py
scrambler_tb:
$(CC) $(CFLAGS) $(INC) -o scrambler scrambler.c
2014-11-04 05:40:43 -05:00
$(CMD) scrambler_tb.py
2014-12-19 05:15:01 -05:00
cont_tb:
$(CMD) cont_tb.py
2014-11-11 12:47:34 -05:00
link_tb:
$(CMD) link_tb.py
command_tb:
$(CMD) command_tb.py
2014-12-15 10:44:12 -05:00
bist_tb:
$(CMD) bist_tb.py
clean:
rm crc scrambler *.vcd