Fixed broken USE_RAM_DESCRIPTORS compile time option when the FIXED_NUM_CONFIGURATION...
[pub/USBasp.git] / makefile
index b087f9b..0d06965 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,30 +1,26 @@
-#\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, projects 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
-# "make doxygen" to document everything with DoxyGen (if installed) and\r
-# "make clean_doxygen" to remove generated Doxygen documentation from everything.\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
-all:\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
+#
+#             LUFA Library
+#     Copyright (C) Dean Camera, 2015.
+#
+#  dean [at] fourwalledcubicle [dot] com
+#           www.lufa-lib.org
+#
+
+# Makefile to build the LUFA library, projects and demos.
+
+# Call with "make all" to rebuild everything, "make clean" to clean everything,
+# "make mostlyclean" to remove all intermediary files but preserve any binaries,
+# "make doxygen" to document everything with Doxygen (if installed). Call
+# "make help" for additional target build information within a specific project.
+
+all:
+
+%:
+       @echo Executing \"make $@\" on all LUFA library elements.
+       @echo
+       $(MAKE) -C LUFA $@
+       $(MAKE) -C Demos $@
+       $(MAKE) -C Projects $@
+       $(MAKE) -C Bootloaders $@
+       @echo
+       @echo LUFA \"make $@\" operation complete.