There's no painless way to do this, but it needs to be done --

the only reason any of the Windows code was in CPP files was
because the MS compiler doesn't support C99.  Switch to using
MinGW, and that problem goes away, so we can rename the files back.
This commit is contained in:
bushing
2009-12-22 12:42:54 +00:00
parent a146075d74
commit a99c6a1921
11 changed files with 3129 additions and 3145 deletions

View File

@@ -1,10 +1,10 @@
#COMMON_FLAGS = -m32
LDLIBS = -L/usr/local/lib -lusb -lreadline -lpthread
LDLIBS = -L/opt/local/lib -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
QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
#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
ifneq ($(QTLDLIBS),)
QTGUI = proxgui.o proxguiqt.o proxguiqt.moc.o
@@ -23,7 +23,7 @@ all-static: snooper cli flasher
proxmark3: LDLIBS+=$(QTLDLIBS)
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
command.o: command.cpp translate.h
command.o: command.c
snooper: snooper.o gui.o command.o usb.o guidummy.o