diff options
author | David Phillips <david@yeah.nah.nz> | 2021-10-31 12:10:11 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2021-10-31 12:10:54 +1300 |
commit | f2fc6a0b45929f81d69c5f17997880a51a53ddf0 (patch) | |
tree | b3522ca14c824f30926617391c321a8efc61c68b /Makefile | |
parent | 53419d0003297bb6aa85b760e0892c3ab9936708 (diff) | |
download | colorlight-5a-75e-blinky-f2fc6a0b45929f81d69c5f17997880a51a53ddf0.tar.xz |
Fix linting errors, dead wire
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 \ |