X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/db917a164fc9f885f817312da49d5c9c451938d2..3f030abe3f671b993dd14d057e660d21dcf03c9b:/linux/Makefile?ds=sidebyside diff --git a/linux/Makefile b/linux/Makefile index ef764db4..8198b053 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -13,19 +13,23 @@ else QTGUI = guidummy.o endif -all: proxmark3 snooper cli +all: proxmark3 snooper cli flasher proxmark3: LDFLAGS+=$(QTLDFLAGS) proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI) +command.o: ../winsrc/command.cpp translate.h + snooper: snooper.o gui.o command.o usb.o guidummy.o cli: cli.o gui.o command.o usb.o guidummy.o +flasher: flasher.o usb.o + proxguiqt.moc.cpp: proxguiqt.h $(MOC) -o$@ $^ clean: - rm -f cli proxmark3 snooper *.o *.moc.cpp + rm -f cli flasher proxmark3 snooper *.o *.moc.cpp .PHONY: all clean