Added new \ref SPI_GetCurrentMode() function to the SPI peripheral driver.
[pub/USBasp.git] / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2011.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.lufa-lib.org
7 #
8
9 # Makefile to build the LUFA library, projects 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 # "make doxygen" to document everything with Doxygen (if installed) and
14 # "make clean_doxygen" to remove generated Doxygen documentation from everything.
15
16 all:
17 %:
18 @echo Executing \"make $@\" on all LUFA library elements.
19 @echo
20 $(MAKE) -C LUFA $@ -s
21 $(MAKE) -C Demos $@ -s
22 $(MAKE) -C Projects $@ -s
23 $(MAKE) -C Bootloaders $@ -s
24 @echo
25 @echo LUFA \"make $@\" operation complete.
26