Firmware update utility for the Gigabeat S and probably other MTP devices. Based on libmtp's sendfile.c example, tweaked by Maurus Cuelenaere and me to send firmware files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15755 a1c6a512-1295-4272-9138-f99709370657
diff --git a/utils/MTP/Makefile b/utils/MTP/Makefile
new file mode 100644
index 0000000..4678546
--- /dev/null
+++ b/utils/MTP/Makefile
@@ -0,0 +1,11 @@
+CFLAGS = -Wall
+LIBS = -lmtp
+OUTPUT = sendfirm
+
+all: $(OUTPUT)
+
+$(OUTPUT): sendfirm.c
+ gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c
+
+clean:
+ rm -f $(OUTPUT)