mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
makefile: silent fpga_compressor stdout by default
This commit is contained in:
parent
742fe16830
commit
27493a7b90
1 changed files with 10 additions and 2 deletions
|
@ -185,7 +185,11 @@ $(OBJDIR)/fpga_all.o: $(OBJDIR)/fpga_all.bit.z
|
|||
|
||||
$(OBJDIR)/fpga_all.bit.z: $(FPGA_BITSTREAMS) $(FPGA_COMPRESSOR)
|
||||
$(info [-] GEN $@)
|
||||
$(Q)$(FPGA_COMPRESSOR) $(filter %.bit,$^) $@
|
||||
ifeq ($(Q),@)
|
||||
@$(FPGA_COMPRESSOR) $(filter %.bit,$^) $@ >/dev/null
|
||||
else
|
||||
$(FPGA_COMPRESSOR) $(filter %.bit,$^) $@
|
||||
endif
|
||||
|
||||
$(FPGA_COMPRESSOR):
|
||||
$(info [*] MAKE $@)
|
||||
|
@ -209,7 +213,11 @@ $(OBJDIR)/fullimage.data.bin: $(OBJDIR)/fullimage.stage1.elf
|
|||
|
||||
$(OBJDIR)/fullimage.data.bin.z: $(OBJDIR)/fullimage.data.bin $(FPGA_COMPRESSOR)
|
||||
$(info [-] GEN $@)
|
||||
$(Q)$(FPGA_COMPRESSOR) $(filter %.bin,$^) $@
|
||||
ifeq ($(Q),@)
|
||||
@$(FPGA_COMPRESSOR) $(filter %.bin,$^) $@ >/dev/null
|
||||
else
|
||||
$(FPGA_COMPRESSOR) $(filter %.bin,$^) $@
|
||||
endif
|
||||
|
||||
$(OBJDIR)/fullimage.data.o: $(OBJDIR)/fullimage.data.bin.z
|
||||
$(info [-] GEN $@)
|
||||
|
|
Loading…
Reference in a new issue