Add .bin to file extensions
Clean up/ignore .bin files.
Fixes: 5cf02e9
("Support building actual bitstreams")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
5f8c60518f
commit
dfd3d1f3b6
|
@ -7,6 +7,7 @@
|
||||||
*.synth.v
|
*.synth.v
|
||||||
*.place.v
|
*.place.v
|
||||||
*.sdf
|
*.sdf
|
||||||
|
*.bin
|
||||||
log
|
log
|
||||||
tags
|
tags
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -144,7 +144,7 @@ test: $(addsuffix .fst,$(MODULES)) $(addsuffix .synth.fst,$(MODULES))
|
||||||
.PHONY: asc
|
.PHONY: asc
|
||||||
asc: $(addprefix rtl/,$(addsuffix .asc,$(MODULES)))
|
asc: $(addprefix rtl/,$(addsuffix .asc,$(MODULES)))
|
||||||
|
|
||||||
CLEAN_EXT := .json .asc .pre .vvp .d .synth.v .place.v .sdf
|
CLEAN_EXT := .json .asc .pre .vvp .d .synth.v .place.v .sdf .bin
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
|
|
Loading…
Reference in New Issue