mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-13 08:43:01 -07:00
merge makefiles into one
This commit is contained in:
parent
d5be6f7cd4
commit
940a20122d
2 changed files with 18 additions and 13 deletions
|
@ -1,8 +1,11 @@
|
||||||
|
WINCC=c:\mingw\bin\gcc
|
||||||
|
|
||||||
#COMMON_FLAGS = -m32
|
#COMMON_FLAGS = -m32
|
||||||
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
|
||||||
LDFLAGS = $(COMMON_FLAGS)
|
LDFLAGS = $(COMMON_FLAGS)
|
||||||
CFLAGS = -I. -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS)
|
CFLAGS = -I. -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS)
|
||||||
|
|
||||||
|
WINLIBS = -lgdi32 -lsetupapi
|
||||||
#CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -arch i386 -D_
|
#CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -arch i386 -D_
|
||||||
#QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) -arch i386
|
#QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) -arch i386
|
||||||
|
|
||||||
|
@ -15,11 +18,24 @@ else
|
||||||
QTGUI = guidummy.o
|
QTGUI = guidummy.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: proxmark3 snooper cli flasher
|
ifeq ($(shell echo ""),)
|
||||||
|
RM = rm -f
|
||||||
|
BINS = proxmark3 snooper cli flasher
|
||||||
|
CLEAN = cli flasher proxmark3 snooper *.o *.moc.cpp
|
||||||
|
else
|
||||||
|
RM = del
|
||||||
|
BINS = prox.exe
|
||||||
|
CLEAN = prox.exe
|
||||||
|
endif
|
||||||
|
|
||||||
|
all: $(BINS)
|
||||||
|
|
||||||
all-static: LDLIBS:=-static $(LDLIBS)
|
all-static: LDLIBS:=-static $(LDLIBS)
|
||||||
all-static: snooper cli flasher
|
all-static: snooper cli flasher
|
||||||
|
|
||||||
|
prox.exe: prox.c wingui.c command.c
|
||||||
|
$(WINCC) $(CFLAGS) $(DEFINES) -o prox.exe prox.c wingui.c command.c $(WINLIBS)
|
||||||
|
|
||||||
proxmark3: LDLIBS+=$(QTLDLIBS)
|
proxmark3: LDLIBS+=$(QTLDLIBS)
|
||||||
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
|
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
|
||||||
|
|
||||||
|
@ -35,6 +51,6 @@ proxguiqt.moc.cpp: proxguiqt.h
|
||||||
$(MOC) -o$@ $^
|
$(MOC) -o$@ $^
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f cli flasher proxmark3 snooper *.o *.moc.cpp
|
$(RM) $(CLEAN)
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
CC=c:\mingw\bin\gcc
|
|
||||||
|
|
||||||
LIBS = -lgdi32 -lsetupapi
|
|
||||||
|
|
||||||
all: prox.exe
|
|
||||||
|
|
||||||
prox.exe: prox.c wingui.c command.c
|
|
||||||
$(CC) $(CFLAGS) $(DEFINES) -o prox.exe prox.c wingui.c command.c $(LIBS)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
del prox.exe
|
|
Loading…
Add table
Add a link
Reference in a new issue