2010-05-08 05:12:14 +02:00
|
|
|
#
|
|
|
|
# LUFA Library
|
2013-01-03 12:37:33 +01:00
|
|
|
# Copyright (C) Dean Camera, 2013.
|
2010-10-13 16:05:35 +02:00
|
|
|
#
|
2010-05-08 05:12:14 +02:00
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
2010-10-28 08:08:58 +02:00
|
|
|
# www.lufa-lib.org
|
2010-05-08 05:12:14 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# Makefile to build the LUFA library, projects and demos.
|
|
|
|
|
|
|
|
# Call with "make all" to rebuild everything, "make clean" to clean everything,
|
2012-06-26 19:37:25 +02:00
|
|
|
# "make mostlyclean" to remove all intermediatary files but preserve any binaries,
|
|
|
|
# "make doxygen" to document everything with Doxygen (if installed). Call
|
|
|
|
# "make help" for additional target build information within a specific project.
|
2010-05-08 05:12:14 +02:00
|
|
|
|
|
|
|
all:
|
2012-07-10 21:33:39 +02:00
|
|
|
|
2010-05-08 05:12:14 +02:00
|
|
|
%:
|
|
|
|
@echo Executing \"make $@\" on all LUFA library elements.
|
|
|
|
@echo
|
2012-06-18 22:36:51 +02:00
|
|
|
$(MAKE) -C LUFA $@
|
|
|
|
$(MAKE) -C Demos $@
|
|
|
|
$(MAKE) -C Projects $@
|
|
|
|
$(MAKE) -C Bootloaders $@
|
2010-05-08 05:12:14 +02:00
|
|
|
@echo
|
|
|
|
@echo LUFA \"make $@\" operation complete.
|