mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Makefile verbose mode: make V=1 as for CMake
This commit is contained in:
parent
a23be5e6b3
commit
742fe16830
9 changed files with 37 additions and 20 deletions
6
Makefile
6
Makefile
|
@ -1,6 +1,8 @@
|
|||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
GZIP=gzip
|
||||
# Windows' echo echos its input verbatim, on Posix there is some
|
||||
|
@ -77,7 +79,7 @@ help:
|
|||
@echo "+ checks - Detect various encoding issues in source code"
|
||||
@echo
|
||||
@echo "Possible platforms: try \"make PLATFORM=\" for more info, default is PM3RDV4"
|
||||
@echo "To see full command lines, use make Q="
|
||||
@echo "To activate verbose mode, use make V=1"
|
||||
|
||||
client: client/all
|
||||
|
||||
|
|
|
@ -10,8 +10,10 @@
|
|||
# Add -DPRESETS to compile with preset models (edit config.h)
|
||||
|
||||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
CC = gcc
|
||||
CXX = g++
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
include_HEADERS = jansson.h
|
||||
nodist_include_HEADERS = jansson_config.h
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
LIB_A = tinycbor.a
|
||||
tinycbor_SOURCES = \
|
||||
|
|
|
@ -13,9 +13,10 @@
|
|||
# variables
|
||||
#
|
||||
|
||||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
# Make sure that all is the default target
|
||||
# (The including Makefile still needs to define what 'all' is)
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
LIB_A = libmbedtls.a
|
||||
mbedtls_SOURCES = \
|
||||
|
|
|
@ -4,8 +4,10 @@
|
|||
# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT =======================
|
||||
|
||||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
# Your platform. See PLATS for possible values.
|
||||
PLAT= none
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
VPATH = ../../common ../../common/crapto1 ../../client
|
||||
CC = gcc
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# Hide full compilation line:
|
||||
ifneq ($(V),1)
|
||||
Q?=@
|
||||
# To see full command lines, use make Q=
|
||||
endif
|
||||
# To see full command lines, use make V=1
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -std=c99 -Wall -O3 -I.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue