- moved usbcat into tools/ directory
This commit is contained in:
parent
da3ec462b8
commit
f1ab55fb22
3 changed files with 4 additions and 1 deletions
|
@ -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 #
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 #
|
||||
|
|
Loading…
Add table
Reference in a new issue