proxmark3/Makefile.defs

151 lines
4.6 KiB
Makefile
Raw Normal View History

2019-08-31 04:10:06 +08:00
# Hide full compilation line:
ifneq ($(V),1)
Q?=@
endif
# To see full command lines, use make V=1
# been here
DEFSBEENHERE = true
CP = cp -a
GZIP = gzip
MKDIR = mkdir -p
RM = rm -f
RMDIR = rm -rf
2019-08-31 04:29:01 +08:00
# rmdir only if dir is empty, tolerate failure
RMDIR_SOFT = -rmdir
2019-08-31 04:10:06 +08:00
MV = mv
TOUCH = touch
FALSE = false
TAR = tar
TARFLAGS ?= -v --ignore-failed-read -r
TARFLAGS += -C .. -f
CROSS ?= arm-none-eabi-
2021-08-23 02:30:06 +08:00
CC = gcc
CXX = g++
LD = g++
2020-05-21 00:12:41 +08:00
SH = sh
BASH = bash
2020-05-21 00:12:41 +08:00
PERL = perl
2020-11-11 07:03:58 +08:00
SWIG = swig
CC_VERSION = $(shell $(CC) -dumpversion 2>/dev/null|sed 's/\..*//')
CC_VERSION := $(or $(strip $(CC_VERSION)),0)
2019-08-31 04:10:06 +08:00
PATHSEP=/
PREFIX ?= /usr/local
UDEV_PREFIX ?= /etc/udev/rules.d
INSTALLBINRELPATH ?= bin
INSTALLSHARERELPATH ?= share/proxmark3
INSTALLFWRELPATH ?= share/proxmark3/firmware
INSTALLTOOLSRELPATH ?= share/proxmark3/tools
INSTALLDOCSRELPATH ?= share/doc/proxmark3
2019-08-31 04:10:06 +08:00
platform = $(shell uname)
DETECTED_OS=$(platform)
ifeq ($(shell $(CC) -v 2>&1 | grep -c "clang version"), 1)
2020-10-22 00:41:18 +08:00
DETECTED_COMPILER = clang
else
2020-10-22 00:41:18 +08:00
DETECTED_COMPILER = gcc
endif
2019-08-31 04:10:06 +08:00
ifeq ($(platform),Darwin)
2021-08-23 01:40:29 +08:00
USE_BREW ?= 1
USE_MACPORTS ?= 0
2020-10-22 00:41:18 +08:00
AR= /usr/bin/ar rcs
RANLIB= /usr/bin/ranlib
2019-08-31 04:10:06 +08:00
else
2020-10-22 00:41:18 +08:00
AR= ar rcs
RANLIB= ranlib
2019-08-31 04:10:06 +08:00
endif
2021-05-23 08:14:20 +08:00
ifeq ($(USE_BREW),1)
BREW_PREFIX = $(shell brew --prefix 2>/dev/null)
2021-08-23 02:49:49 +08:00
ifeq ($(strip $(BREW_PREFIX)),)
2021-08-23 01:40:29 +08:00
USE_BREW = 0
endif
2021-01-04 08:27:20 +08:00
endif
2021-08-23 01:40:29 +08:00
ifeq ($(USE_MACPORTS),1)
MACPORTS_PREFIX ?= /opt/local
endif
2020-10-20 07:00:00 +08:00
ifeq ($(DEBUG),1)
DEFCXXFLAGS = -g -O0 -pipe
DEFCFLAGS = -g -O0 -fstrict-aliasing -pipe
DEFLDFLAGS =
else
DEFCXXFLAGS = -Wall -Werror -O3 -pipe
DEFCFLAGS = -Wall -Werror -O3 -fstrict-aliasing -pipe
2020-10-20 07:00:00 +08:00
DEFLDFLAGS =
endif
2020-12-30 07:19:21 +08:00
ifeq ($(DEBUG_ARM),1)
APP_CFLAGS += -g
SKIP_COMPRESSION=1
endif
# Next ones are activated only if SANITIZE=1
ifeq ($(SANITIZE),1)
DEFCFLAGS += -g -fsanitize=address -fno-omit-frame-pointer
DEFCXXFLAGS += -g -fsanitize=address -fno-omit-frame-pointer
DEFLDFLAGS += -g -fsanitize=address
endif
# Some more warnings we want as errors:
2020-05-12 04:15:32 +08:00
DEFCFLAGS += -Wbad-function-cast -Wredundant-decls -Wmissing-prototypes -Wchar-subscripts -Wshadow -Wundef -Wwrite-strings -Wunused -Wuninitialized -Wpointer-arith -Winline -Wformat -Wformat-security -Winit-self -Wmissing-include-dirs -Wnested-externs -Wmissing-declarations -Wempty-body -Wignored-qualifiers -Wmissing-field-initializers -Wtype-limits -Wold-style-definition
# Some more warnings we need first to eliminate, so temporarely tolerated:
2020-05-09 21:06:28 +08:00
DEFCFLAGS += -Wcast-align -Wno-error=cast-align
2020-05-12 05:46:26 +08:00
DEFCFLAGS += -Wswitch-enum -Wno-error=switch-enum
# GCC 10 has issues with false positives on stringop-overflow, let's disable them for now (cf https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92955, https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94335)
# beware these flags didn't exist for GCC < 7
ifeq ($(shell expr $(CC_VERSION) \>= 10), 1)
ifneq ($(DETECTED_COMPILER), clang)
DEFCFLAGS += -Wno-stringop-overflow -Wno-error=stringop-overflow
2020-10-22 00:41:18 +08:00
endif
endif
2020-05-12 07:49:01 +08:00
ifeq ($(platform),Darwin)
2020-10-22 00:41:18 +08:00
# their readline has strict-prototype issues
DEFCFLAGS += -Wno-strict-prototypes
2020-05-12 07:49:01 +08:00
else
2020-10-22 00:41:18 +08:00
DEFCFLAGS += -Wstrict-prototypes
2020-05-12 07:49:01 +08:00
endif
2020-05-09 21:06:28 +08:00
# Next ones are activated only if GCCEXTRA=1 or CLANGEXTRA=1
EXTRACFLAGS =
EXTRACFLAGS += -Wunused-parameter -Wno-error=unused-parameter
EXTRACFLAGS += -Wsign-compare -Wno-error=sign-compare
2020-05-20 19:28:37 +08:00
EXTRACFLAGS += -Wconversion -Wno-error=conversion -Wno-error=sign-conversion -Wno-error=float-conversion
2020-05-09 21:06:28 +08:00
# unknown to clang or old gcc:
# First we activate Wextra then we explicitly list those we know about
2020-05-09 22:12:54 +08:00
# Those without -Wno-error are supposed to be completely solved
2020-05-09 21:06:28 +08:00
GCCEXTRACFLAGS = -Wextra
GCCEXTRACFLAGS += -Wclobbered -Wno-error=clobbered
2020-05-09 22:12:54 +08:00
GCCEXTRACFLAGS += -Wcast-function-type
2020-05-09 21:06:28 +08:00
GCCEXTRACFLAGS += -Wimplicit-fallthrough=3 -Wno-error=implicit-fallthrough
2020-05-09 22:12:54 +08:00
GCCEXTRACFLAGS += -Wmissing-parameter-type
2020-05-09 21:06:28 +08:00
GCCEXTRACFLAGS += -Wold-style-declaration -Wno-error=old-style-declaration
2020-05-09 22:12:54 +08:00
GCCEXTRACFLAGS += -Woverride-init
GCCEXTRACFLAGS += -Wshift-negative-value
2020-05-09 21:06:28 +08:00
GCCEXTRACFLAGS += -Wunused-but-set-parameter -Wno-error=unused-but-set-parameter
ifeq ($(GCCEXTRA),1)
DEFCFLAGS += $(GCCEXTRACFLAGS) $(EXTRACFLAGS)
endif
# unknown to gcc or old clang:
# First we activate Wextra then we explicitly list those we know about
2020-05-09 22:12:54 +08:00
# Those without -Wno-error are supposed to be completely solved
2020-05-09 21:06:28 +08:00
CLANGEXTRACFLAGS = -Wextra
CLANGEXTRACFLAGS += -Wtautological-type-limit-compare
CLANGEXTRACFLAGS += -Wnull-pointer-arithmetic
CLANGEXTRACFLAGS += -Woverride-init
CLANGEXTRACFLAGS += -Wshift-negative-value
CLANGEXTRACFLAGS += -Wimplicit-fallthrough
ifeq ($(CLANGEXTRA),1)
DEFCFLAGS += $(CLANGEXTRACFLAGS) $(EXTRACFLAGS)
endif
2020-05-12 07:49:01 +08:00
ifeq ($(CLANGEVERYTHING),1)
DEFCFLAGS += -Weverything -Wno-error
endif
ifeq ($(NOERROR),1)
DEFCFLAGS += -Wno-error
endif