2009-03-20 07:34:41 +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-03-20 07:34:41 +01:00
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
2010-10-28 08:08:58 +02:00
|
|
|
# www.lufa-lib.org
|
2009-03-20 07:34:41 +01:00
|
|
|
#
|
|
|
|
|
2009-09-29 09:13:42 +02:00
|
|
|
# Makefile to build all the LUFA Dual Role Demos. Call with "make all" to
|
|
|
|
# rebuild all Dual Role demos.
|
2009-03-20 07:34:41 +01:00
|
|
|
|
|
|
|
# Projects are pre-cleaned before each one is built, to ensure any
|
|
|
|
# custom LUFA library build options are reflected in the compiled
|
|
|
|
# code.
|
|
|
|
|
|
|
|
all:
|
2010-05-07 09:11:25 +02:00
|
|
|
$(MAKE) -C MouseHostDevice clean
|
|
|
|
$(MAKE) -C MouseHostDevice all
|
2009-03-20 07:34:41 +01:00
|
|
|
|
|
|
|
%:
|
2010-05-07 09:11:25 +02:00
|
|
|
$(MAKE) -C MouseHostDevice $@
|
2010-10-13 16:05:35 +02:00
|
|
|
|