mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
test of PR 1756
This commit is contained in:
parent
ec403485b6
commit
ab3e988441
1 changed files with 8 additions and 1 deletions
|
@ -365,6 +365,8 @@ endif
|
||||||
|
|
||||||
#######################################################################################################
|
#######################################################################################################
|
||||||
CFLAGS ?= $(DEFCFLAGS)
|
CFLAGS ?= $(DEFCFLAGS)
|
||||||
|
CFLAGS += $(MYDEFS) $(MYCFLAGS) $(MYINCLUDES)
|
||||||
|
|
||||||
# We cannot just use CFLAGS+=... because it has impact on sub-makes if CFLAGS is defined in env:
|
# We cannot just use CFLAGS+=... because it has impact on sub-makes if CFLAGS is defined in env:
|
||||||
PM3CFLAGS = $(CFLAGS)
|
PM3CFLAGS = $(CFLAGS)
|
||||||
PM3CFLAGS += -g -I./src -I./include -I../include -I../common -I../common_fpga $(PM3INCLUDES) $(INCLUDES)
|
PM3CFLAGS += -g -I./src -I./include -I../include -I../common -I../common_fpga $(PM3INCLUDES) $(INCLUDES)
|
||||||
|
@ -407,6 +409,8 @@ endif
|
||||||
PM3CFLAGS += -DHAVE_SNPRINTF
|
PM3CFLAGS += -DHAVE_SNPRINTF
|
||||||
|
|
||||||
CXXFLAGS ?= -Wall -Werror -O3
|
CXXFLAGS ?= -Wall -Werror -O3
|
||||||
|
CXXFLAGS += $(MYDEFS) $(MYCXXFLAGS) $(MYINCLUDES)
|
||||||
|
|
||||||
PM3CXXFLAGS = $(CXXFLAGS)
|
PM3CXXFLAGS = $(CXXFLAGS)
|
||||||
PM3CXXFLAGS += -I../include -I./include
|
PM3CXXFLAGS += -I../include -I./include
|
||||||
|
|
||||||
|
@ -422,6 +426,8 @@ endif
|
||||||
PM3CXXFLAGS += -DHAVE_SNPRINTF
|
PM3CXXFLAGS += -DHAVE_SNPRINTF
|
||||||
|
|
||||||
LDFLAGS ?= $(DEFLDFLAGS)
|
LDFLAGS ?= $(DEFLDFLAGS)
|
||||||
|
LDFLAGS += $(MYLDFLAGS)
|
||||||
|
|
||||||
PM3LDFLAGS = $(LDFLAGS)
|
PM3LDFLAGS = $(LDFLAGS)
|
||||||
ifeq ($(platform),Darwin)
|
ifeq ($(platform),Darwin)
|
||||||
PM3LDFLAGS += -framework Foundation -framework AppKit
|
PM3LDFLAGS += -framework Foundation -framework AppKit
|
||||||
|
@ -753,7 +759,8 @@ all-static: $(BINS)
|
||||||
|
|
||||||
proxmark3: $(OBJS) $(STATICLIBS) lualibs/pm3_cmd.lua lualibs/mfc_default_keys.lua
|
proxmark3: $(OBJS) $(STATICLIBS) lualibs/pm3_cmd.lua lualibs/mfc_default_keys.lua
|
||||||
$(info [=] LD $@)
|
$(info [=] LD $@)
|
||||||
$(Q)$(LD) $(PM3LDFLAGS) $(OBJS) $(STATICLIBS) $(LDLIBS) -o $@
|
# $(Q)$(LD) $(PM3LDFLAGS) $(OBJS) $(STATICLIBS) $(LDLIBS) -o $@
|
||||||
|
$(Q)$(LD) $(PM3CFLAGS) $(PM3LDFLAGS) $(OBJS) $(STATICLIBS) $(LDLIBS) -o $@
|
||||||
|
|
||||||
src/proxgui.cpp: src/ui/ui_overlays.h src/ui/ui_image.h
|
src/proxgui.cpp: src/ui/ui_overlays.h src/ui/ui_image.h
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue