2009-06-05 10:13:19 +02:00
|
|
|
#
|
|
|
|
# LUFA Library
|
2009-12-31 00:49:19 +01:00
|
|
|
# Copyright (C) Dean Camera, 2010.
|
2009-06-05 10:13:19 +02:00
|
|
|
#
|
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
|
|
|
# www.fourwalledcubicle.com
|
|
|
|
#
|
|
|
|
|
|
|
|
# Makefile to build all the LUFA Class Driver and Low Level Demos. Call with
|
|
|
|
# "make all" to rebuild all demos of both types.
|
|
|
|
|
|
|
|
# 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-06-05 10:13:19 +02:00
|
|
|
%:
|
2010-05-07 09:11:25 +02:00
|
|
|
$(MAKE) -C ClassDriver $@
|
|
|
|
$(MAKE) -C LowLevel $@
|