mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
makefile: allow override of install paths
This commit is contained in:
parent
c709ee7c10
commit
e0cdb5d7a7
2 changed files with 12 additions and 0 deletions
|
@ -15,6 +15,12 @@ FALSE = false
|
|||
|
||||
CFLAGS ?= -Wall -Werror -O3
|
||||
CFLAGS += $(MYDEFS) $(MYCFLAGS) $(MYINCLUDES)
|
||||
ifneq (,$(PM3_BIN_PATH))
|
||||
CFLAGS += -DPM3_BIN_PATH=\"$(PM3_BIN_PATH)\"
|
||||
endif
|
||||
ifneq (,$(PM3_SHARE_PATH))
|
||||
CFLAGS += -DPM3_SHARE_PATH=\"$(PM3_SHARE_PATH)\"
|
||||
endif
|
||||
|
||||
platform = $(shell uname)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue