mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
104 lines
3.3 KiB
Text
104 lines
3.3 KiB
Text
# 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
|
|
# rmdir only if dir is empty, tolerate failure
|
|
RMDIR_SOFT = -rmdir
|
|
MV = mv
|
|
TOUCH = touch
|
|
FALSE = false
|
|
TAR = tar
|
|
TARFLAGS ?= -v --ignore-failed-read -r
|
|
TARFLAGS += -C .. -f
|
|
CROSS ?= arm-none-eabi-
|
|
CC = gcc
|
|
CXX = g++
|
|
LD = g++
|
|
SH = sh
|
|
BASH = bash
|
|
PERL = perl
|
|
|
|
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
|
|
|
|
platform = $(shell uname)
|
|
DETECTED_OS=$(platform)
|
|
|
|
ifeq ($(platform),Darwin)
|
|
AR= /usr/bin/ar rcs
|
|
RANLIB= /usr/bin/ranlib
|
|
else
|
|
AR= ar rcs
|
|
RANLIB= ranlib
|
|
endif
|
|
|
|
DEFCXXFLAGS = -Wall -Werror -O3 -pipe
|
|
DEFCFLAGS = -Wall -Werror -O3 -fstrict-aliasing -pipe
|
|
# Some more warnings we want as errors:
|
|
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:
|
|
DEFCFLAGS += -Wcast-align -Wno-error=cast-align
|
|
DEFCFLAGS += -Wswitch-enum -Wno-error=switch-enum
|
|
|
|
ifeq ($(platform),Darwin)
|
|
# their readline has strict-prototype issues
|
|
DEFCFLAGS += -Wno-strict-prototypes
|
|
else
|
|
DEFCFLAGS += -Wstrict-prototypes
|
|
endif
|
|
|
|
# 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
|
|
EXTRACFLAGS += -Wconversion -Wno-error=conversion -Wno-error=sign-conversion -Wno-error=float-conversion
|
|
|
|
# unknown to clang or old gcc:
|
|
# First we activate Wextra then we explicitly list those we know about
|
|
# Those without -Wno-error are supposed to be completely solved
|
|
GCCEXTRACFLAGS = -Wextra
|
|
GCCEXTRACFLAGS += -Wclobbered -Wno-error=clobbered
|
|
GCCEXTRACFLAGS += -Wcast-function-type
|
|
GCCEXTRACFLAGS += -Wimplicit-fallthrough=3 -Wno-error=implicit-fallthrough
|
|
GCCEXTRACFLAGS += -Wmissing-parameter-type
|
|
GCCEXTRACFLAGS += -Wold-style-declaration -Wno-error=old-style-declaration
|
|
GCCEXTRACFLAGS += -Woverride-init
|
|
GCCEXTRACFLAGS += -Wshift-negative-value
|
|
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
|
|
# Those without -Wno-error are supposed to be completely solved
|
|
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
|
|
ifeq ($(CLANGEVERYTHING),1)
|
|
DEFCFLAGS += -Weverything -Wno-error
|
|
endif
|
|
ifeq ($(NOERROR),1)
|
|
DEFCFLAGS += -Wno-error
|
|
endif
|