From f2fc6a0b45929f81d69c5f17997880a51a53ddf0 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 31 Oct 2021 12:10:11 +1300 Subject: Fix linting errors, dead wire --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a1842aa..407d8aa 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ all: $(TOP).svf clean: rm -f *.svf *.bit *.json +lint: + verilator --lint-only $(OBJS) + program: $(TOP).svf # probably not very useful to anyone without more configurable paths openocd -f /usr/share/openocd/scripts/interface/ftdi/dp_busblaster_kt-link.cfg \ @@ -19,7 +22,7 @@ program: $(TOP).svf -c "init; svf $^; shutdown" %.json: $(OBJS) - yosys -p "synth_ecp5 -json $@" $(OBJS) + yosys -e ".*" -p "synth_ecp5 -json $@" $(OBJS) %.config: %.json %.lpf nextpnr-ecp5 \ -- cgit v1.1