2009-03-20 07:34:41 +01:00
|
|
|
#
|
|
|
|
# LUFA Library
|
2009-12-31 00:49:19 +01:00
|
|
|
# Copyright (C) Dean Camera, 2010.
|
2009-03-20 07:34:41 +01:00
|
|
|
#
|
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
|
|
|
# www.fourwalledcubicle.com
|
|
|
|
#
|
|
|
|
|
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 $@
|