diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-05-08 03:12:14 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-05-08 03:12:14 +0000 |
commit | 071e02c6b6b4837fa9cf0b6d4c749994e02638d7 (patch) | |
tree | 960446788703b69f0bb285450be80c5b3d8cc22c /makefile | |
parent | e331b531c6e6d93eb0eee42b9002074e8090ad18 (diff) | |
download | lufa-071e02c6b6b4837fa9cf0b6d4c749994e02638d7.tar.gz lufa-071e02c6b6b4837fa9cf0b6d4c749994e02638d7.tar.bz2 lufa-071e02c6b6b4837fa9cf0b6d4c749994e02638d7.zip |
Add svn:eol-style property to source files, so that the line endings are correctly converted to the target system's native end of line style.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 52 |
1 files changed, 26 insertions, 26 deletions
@@ -1,26 +1,26 @@ -#
-# LUFA Library
-# Copyright (C) Dean Camera, 2010.
-#
-# dean [at] fourwalledcubicle [dot] com
-# www.fourwalledcubicle.com
-#
-
-# Makefile to build the LUFA library, projects and demos.
-
-# Call with "make all" to rebuild everything, "make clean" to clean everything,
-# "make clean_list" to remove all intermediatary files but preserve any binaries,
-# "make doxygen" to document everything with Doxygen (if installed) and
-# "make clean_doxygen" to remove generated Doxygen documentation from everything.
-
-all:
-
-%:
- @echo Executing \"make $@\" on all LUFA library elements.
- @echo
- $(MAKE) -C LUFA $@ -s
- $(MAKE) -C Demos $@ -s
- $(MAKE) -C Projects $@ -s
- $(MAKE) -C Bootloaders $@ -s
- @echo
- @echo LUFA \"make $@\" operation complete.
+# +# LUFA Library +# Copyright (C) Dean Camera, 2010. +# +# dean [at] fourwalledcubicle [dot] com +# www.fourwalledcubicle.com +# + +# Makefile to build the LUFA library, projects and demos. + +# Call with "make all" to rebuild everything, "make clean" to clean everything, +# "make clean_list" to remove all intermediatary files but preserve any binaries, +# "make doxygen" to document everything with Doxygen (if installed) and +# "make clean_doxygen" to remove generated Doxygen documentation from everything. + +all: + +%: + @echo Executing \"make $@\" on all LUFA library elements. + @echo + $(MAKE) -C LUFA $@ -s + $(MAKE) -C Demos $@ -s + $(MAKE) -C Projects $@ -s + $(MAKE) -C Bootloaders $@ -s + @echo + @echo LUFA \"make $@\" operation complete. |