litex/lib/sata/test/Makefile

30 lines
422 B
Makefile

MSCDIR = ../../../
PYTHON = python3
CMD = PYTHONPATH=$(MSCDIR) $(PYTHON)
CC=gcc
CFLAGS =-Wall -O0
crc_tb:
$(CC) $(CFLAGS) $(INC) -o crc crc.c
$(CMD) crc_tb.py
scrambler_tb:
$(CC) $(CFLAGS) $(INC) -o scrambler scrambler.c
$(CMD) scrambler_tb.py
link_tb:
$(CMD) link_tb.py
command_tb:
$(CMD) command_tb.py
bist_tb:
$(CMD) bist_tb.py
all: crc_tb scrambler_tb link_tb command_tb
clean:
rm crc scrambler *.vcd