X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/6658905f18a1eebc148836f26c731dea9c1377dc..3f030abe3f671b993dd14d057e660d21dcf03c9b:/linux/Makefile diff --git a/linux/Makefile b/linux/Makefile index 7d4b0156..8198b053 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -13,17 +13,23 @@ else QTGUI = guidummy.o endif -all: proxmark3 snooper +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 proxmark3 snooper *.o *.moc.cpp + rm -f cli flasher proxmark3 snooper *.o *.moc.cpp .PHONY: all clean