Some minor whitespace corrections.
[pub/USBasp.git] / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2009.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.fourwalledcubicle.com
7 #
8
9 # Makefile to build the LUFA library and Demos.
10
11 # Call with "make all" to rebuild everything, "make clean" to clean everything,
12 # "make clean_list" to remove all intermediatary files but preserve any binaries
13 # and "make doxygen" to document the project with DoxyGen (if installed).
14
15 # It is suggested that for the master build, the --quiet switch is passed to make,
16 # to remove all the commands from the output. This gives a much easier to read
17 # report of the entire build process.
18
19 %:
20 @echo Executing \"make $@\" on all LUFA library elements.
21 @echo
22 make -C LUFA/ $@
23 make -C Demos/ $@
24 make -C Projects/ $@
25 make -C Bootloaders/ $@
26 @echo
27 @echo LUFA \"make $@\" operation complete.