summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruvok2026-01-01 15:32:35 +0100
committeruvok2026-01-01 15:32:35 +0100
commit4792fb03e5d39da03633e71ff4b5375709bfb1d5 (patch)
tree6590b03bc15727c2a1fef34765f3f391f637c0f1
parent5341ab10c042a5b3eca8d6c08cde15e5c71c07d6 (diff)
remove superfluous ws
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 94c301c..ab1504f 100644
--- a/Makefile
+++ b/Makefile
@@ -66,14 +66,14 @@ lint: $(PROGRAM).v
# sh resolvedeps.sh $<
# only used for dep-generation, output file is needed for dep file, but otherwise useless
# this must happen *without* synth_gowin, as this includes additional files, which ruin the depfile.
- yosys -q $< -E $*.dep -o $@ && rm -f $@
+ yosys -q $< -E $*.dep -o $@ && rm -f $@
yosys -p "read_verilog $<; synth_gowin -top $* -json $@" $(YOSYS_OPTS)
# because yosys -E is buggy, or behaves differently than expected,
# use gawk to force-create deps.
%.dep: %.v
# sh resolvedeps.sh $<
- yosys $< -E $*.dep -o $*.json && rm -f $*.json
+ yosys $< -E $*.dep -o $*.json && rm -f $*.json
# place and route?
%.pnr.json: %.json $(CST)