Moved all source to the trunk directory.
authorDean Camera <dean@fourwalledcubicle.com>
Mon, 23 Feb 2009 07:08:34 +0000 (07:08 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Mon, 23 Feb 2009 07:08:34 +0000 (07:08 +0000)
makefile [new file with mode: 0644]

diff --git a/makefile b/makefile
new file mode 100644 (file)
index 0000000..6fca4a6
--- /dev/null
+++ b/makefile
@@ -0,0 +1,27 @@
+#\r
+#             LUFA Library\r
+#     Copyright (C) Dean Camera, 2009.\r
+#              \r
+#  dean [at] fourwalledcubicle [dot] com\r
+#      www.fourwalledcubicle.com\r
+#\r
+\r
+# Makefile to build the LUFA library and Demos.\r
+\r
+# Call with "make all" to rebuild everything, "make clean" to clean everything,\r
+# "make clean_list" to remove all intermediatary files but preserve any binaries\r
+# and "make doxygen" to document the project with DoxyGen (if installed).\r
+\r
+# It is suggested that for the master build, the --quiet switch is passed to make,\r
+# to remove all the commands from the output. This gives a much easier to read\r
+# report of the entire build process.\r
+\r
+%:\r
+       @echo Executing \"make $@\" on all LUFA library elements.\r
+       @echo\r
+       make -C LUFA/ $@\r
+       make -C Demos/ $@\r
+       make -C Projects/ $@\r
+       make -C Bootloaders/ $@\r
+       @echo\r
+       @echo LUFA \"make $@\" operation complete.\r