X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/db917a164fc9f885f817312da49d5c9c451938d2..8f61ef56ed90b4c1687a22bed1e9cdcf5e95e20f:/linux/Makefile 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