mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 15:44:47 +08:00
Change variable assignments to make it easier to compile static and/or x86 binaries
This commit is contained in:
parent
ac86b65681
commit
709b784c16
1 changed files with 9 additions and 4 deletions
|
@ -1,8 +1,10 @@
|
||||||
LDFLAGS = -lusb -lreadline -lpthread -L/opt/local/lib
|
#COMMON_FLAGS = -m32
|
||||||
CFLAGS = -I. -I/opt/local/include -Wall -Wno-unused-function
|
LDLIBS = -L/usr/local/lib -lusb -lreadline -lpthread
|
||||||
|
LDFLAGS = $(COMMON_FLAGS)
|
||||||
|
CFLAGS = -I. -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS)
|
||||||
|
|
||||||
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall
|
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall
|
||||||
QTLDFLAGS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
|
QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
|
||||||
|
|
||||||
ifneq ($(QTLDFLAGS),)
|
ifneq ($(QTLDFLAGS),)
|
||||||
QTGUI = proxgui.o proxguiqt.o proxguiqt.moc.o
|
QTGUI = proxgui.o proxguiqt.o proxguiqt.moc.o
|
||||||
|
@ -15,7 +17,10 @@ endif
|
||||||
|
|
||||||
all: proxmark3 snooper cli flasher
|
all: proxmark3 snooper cli flasher
|
||||||
|
|
||||||
proxmark3: LDFLAGS+=$(QTLDFLAGS)
|
all-static: LDLIBS:=-static $(LDLIBS)
|
||||||
|
all-static: snooper cli flasher
|
||||||
|
|
||||||
|
proxmark3: LDLIBS+=$(QTLDLIBS)
|
||||||
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
|
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
|
||||||
|
|
||||||
command.o: ../winsrc/command.cpp translate.h
|
command.o: ../winsrc/command.cpp translate.h
|
||||||
|
|
Loading…
Reference in a new issue