Add the new Linux "cli" command line client, thanks for the contribution!

This commit is contained in:
edouard@lafargue.name
2009-06-26 10:20:55 +00:00
parent 7fdbe272cf
commit db917a164f
2 changed files with 65 additions and 2 deletions

View File

@@ -13,17 +13,19 @@ else
QTGUI = guidummy.o
endif
all: proxmark3 snooper
all: proxmark3 snooper cli
proxmark3: LDFLAGS+=$(QTLDFLAGS)
proxmark3: proxmark3.o gui.o command.o usb.o $(QTGUI)
snooper: snooper.o gui.o command.o usb.o guidummy.o
cli: cli.o gui.o command.o usb.o guidummy.o
proxguiqt.moc.cpp: proxguiqt.h
$(MOC) -o$@ $^
clean:
rm -f proxmark3 snooper *.o *.moc.cpp
rm -f cli proxmark3 snooper *.o *.moc.cpp
.PHONY: all clean