2009-02-23 08:08:17 +01:00
|
|
|
#
|
|
|
|
# LUFA Library
|
2011-01-01 14:00:56 +01:00
|
|
|
# Copyright (C) Dean Camera, 2011.
|
2010-10-13 16:05:35 +02:00
|
|
|
#
|
2009-02-23 08:08:17 +01:00
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
2010-10-28 08:08:58 +02:00
|
|
|
# www.lufa-lib.org
|
2009-02-23 08:08:17 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# Makefile to build all the LUFA Demos. Call with "make all" to
|
|
|
|
# rebuild all demos.
|
|
|
|
|
|
|
|
# Projects are pre-cleaned before each one is built, to ensure any
|
|
|
|
# custom LUFA library build options are reflected in the compiled
|
|
|
|
# code.
|
|
|
|
|
2010-06-25 15:28:34 +02:00
|
|
|
all:
|
|
|
|
|
2009-02-23 08:08:17 +01:00
|
|
|
%:
|
2010-05-07 09:11:25 +02:00
|
|
|
$(MAKE) -C Device $@
|
|
|
|
$(MAKE) -C Host $@
|
|
|
|
$(MAKE) -C DualRole $@
|
2010-10-13 16:05:35 +02:00
|
|
|
|