Remove unused/obsolete maintenance scripts.
[pub/USBasp.git] / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2018.
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 doxygen" to document everything with Doxygen (if installed). Call
13 # "make help" for additional target build information within a specific project.
14
15 all:
16
17 %:
18 @echo Executing \"make $@\" on all LUFA library elements.
19 @echo
20 $(MAKE) -C LUFA $@
21 $(MAKE) -C Demos $@
22 $(MAKE) -C Projects $@
23 $(MAKE) -C Bootloaders $@
24 @echo
25 @echo LUFA \"make $@\" operation complete.