3 # Copyright (C) Dean Camera, 2010.
5 # dean [at] fourwalledcubicle [dot] com
6 # www.fourwalledcubicle.com
9 # Makefile to build the LUFA library, projects and demos.
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 # "make doxygen" to document everything with Doxygen (if installed) and
14 # "make clean_doxygen" to remove generated Doxygen documentation from everything.
19 @echo Executing \"make $@\" on all LUFA library elements.
22 $(MAKE) -C Demos $@ -s
23 $(MAKE) -C Projects $@ -s
24 $(MAKE) -C Bootloaders $@ -s
26 @echo LUFA \"make $@\" operation complete.