- moved usbcat into tools/ directory

This commit is contained in:
Ingo Ruhnke 2008-04-15 04:53:16 +02:00
parent da3ec462b8
commit f1ab55fb22
3 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,5 @@
env = Environment(CPPFLAGS=["-g", "-O2", "-Wall"], LIBS=["usb"])
env.Program("xboxdrv", ["xboxdrv.cpp", "uinput.cpp"])
env.Program("usbcat", ["usbcat.cpp"])
# EOF #

View file

@ -5,6 +5,9 @@ This directory contains jstest and evtest. You can sometimes find
these tools in your distribution, but especially evtest can sometimes
be hard to come by, so I have included them here for convenience.
usbcat is a little tool to dump content from a usb device, it is just
for debugging and reverse engineering.
You can compile them via:
% scons

View file

@ -3,5 +3,6 @@
env = Environment(CPPFLAGS=["-g", "-O2", "-Wall"])
env.Program("jstest", ["jstest.c"])
env.Program("evtest", ["evtest.c"])
env.Program("usbcat", ["usbcat.cpp"], LIBS = ["usb"])
# EOF #