diff options
author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-06-28 16:49:46 +0000 |
---|---|---|
committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-06-28 16:49:46 +0000 |
commit | d951e169f5f4e82590b36b1e703a09e71da1fdd1 (patch) | |
tree | 45480d4388cc307c97cfba0edd31a2f07e4c34f6 /utils/jz4740_tools/Makefile | |
parent | 9c84070c8a56b89b32c92eeca06154ac6ad927a5 (diff) | |
download | rockbox-d951e169f5f4e82590b36b1e703a09e71da1fdd1.tar.gz rockbox-d951e169f5f4e82590b36b1e703a09e71da1fdd1.zip |
Rename jz4740 tools + add some new ones
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17840 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/jz4740_tools/Makefile')
-rwxr-xr-x | utils/jz4740_tools/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/jz4740_tools/Makefile b/utils/jz4740_tools/Makefile new file mode 100755 index 0000000000..e61b837d99 --- /dev/null +++ b/utils/jz4740_tools/Makefile | |||
@@ -0,0 +1,9 @@ | |||
1 | WIN_DRIVERS_LIBUSB_DIR = D:\Program Files\LibUSB-Win32 | ||
2 | WIN_LIBUSB_INCLUDE_DIR = "$(WIN_DRIVERS_LIBUSB_DIR)\include" | ||
3 | WIN_LIBUSB_LIB_DIR = "$(WIN_DRIVERS_LIBUSB_DIR)\lib\gcc" | ||
4 | |||
5 | usbtool: | ||
6 | gcc -Wall -o usbtool jz4740_usbtool.c -lusb | ||
7 | |||
8 | usbtoolwin: | ||
9 | gcc -Wall -o usbtool.exe jz4740_usbtool.c -lusb -I $(WIN_LIBUSB_INCLUDE_DIR) -L $(WIN_LIBUSB_LIB_DIR) \ No newline at end of file | ||