summaryrefslogtreecommitdiff
path: root/flash/uart_boot/Makefile
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-11-19 22:44:45 +0000
committerJens Arnold <amiconn@rockbox.org>2004-11-19 22:44:45 +0000
commitc519e6365e50645510d3394b2bcc67a501748b8c (patch)
tree9be4cad39947134d58315d16ce993f154b12b342 /flash/uart_boot/Makefile
parent30237007f1cccdc12e6012a01a87ed83b6024fff (diff)
Makefile and adjustments for compiling uart_boot under cygwin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5439 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'flash/uart_boot/Makefile')
-rw-r--r--flash/uart_boot/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/flash/uart_boot/Makefile b/flash/uart_boot/Makefile
new file mode 100644
index 0000000000..f8f94870b6
--- /dev/null
+++ b/flash/uart_boot/Makefile
@@ -0,0 +1,16 @@
+# __________ __ ___.
+# Open \______ \ ____ ____ | | _\_ |__ _______ ___
+# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+# \/ \/ \/ \/ \/
+# $Id$
+#
+# This Makefile currently works for cygwin only!
+
+
+CFLAGS := -O -W -Wall -mno-cygwin
+
+uart_boot: uart_boot.c client.c flash.c uart_win.c
+ $(CC) $(CFLAGS) $+ -o $@
+