mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
show compiler version
This commit is contained in:
parent
c1209ca0f5
commit
2f293e211a
3 changed files with 10 additions and 3 deletions
|
@ -145,7 +145,10 @@ endif
|
|||
OBJS = $(OBJDIR)/fullimage.s19
|
||||
FPGA_COMPRESSOR = ../tools/fpga_compress/fpga_compress
|
||||
|
||||
all: $(OBJS)
|
||||
all: showinfo $(OBJS)
|
||||
|
||||
showinfo:
|
||||
$(info compiler version: $(shell $(CC) --version|head -n 1))
|
||||
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
|
|
@ -41,7 +41,10 @@ version.c: default_version.c
|
|||
$(info [=] GEN $@)
|
||||
$(Q)sh ../tools/mkversion.sh > $@ || perl ../tools/mkversion.pl > $@ || $(CP) $^ $@
|
||||
|
||||
all: $(OBJS)
|
||||
all: showinfo $(OBJS)
|
||||
|
||||
showinfo:
|
||||
$(info compiler version: $(shell $(CC) --version|head -n 1))
|
||||
|
||||
tarbin: $(OBJS)
|
||||
$(info [=] GEN $@)
|
||||
|
@ -68,7 +71,7 @@ uninstall:
|
|||
$(info [@] Uninstalling bootrom from $(DESTDIR)$(PREFIX)...)
|
||||
$(Q)$(RM) $(foreach fw,$(INSTALLFW),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)$(PATHSEP)$(notdir $(fw)))
|
||||
|
||||
.PHONY: all clean help install
|
||||
.PHONY: all clean help install showinfo
|
||||
help:
|
||||
@echo Multi-OS Makefile, you are running on $(DETECTED_OS)
|
||||
@echo Possible targets:
|
||||
|
|
|
@ -159,6 +159,7 @@ $(info native BT support: Bluez found, enabled)
|
|||
else
|
||||
$(info native BT support: Bluez not found, disabled)
|
||||
endif
|
||||
$(info compiler version: $(shell $(CC) --version|head -n 1))
|
||||
$(info ===================================================================)
|
||||
|
||||
# Flags to generate temporary dependency files
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue