2009-08-11 11:12:29 +02:00
|
|
|
#
|
|
|
|
# LUFA Library
|
|
|
|
# Copyright (C) Dean Camera, 2009.
|
|
|
|
#
|
|
|
|
# dean [at] fourwalledcubicle [dot] com
|
|
|
|
# www.fourwalledcubicle.com
|
|
|
|
#
|
|
|
|
|
|
|
|
# Makefile to build all the LUFA Host Demos. Call with "make all" to
|
|
|
|
# rebuild all Host demos.
|
|
|
|
|
|
|
|
# Projects are pre-cleaned before each one is built, to ensure any
|
|
|
|
# custom LUFA library build options are reflected in the compiled
|
|
|
|
# code.
|
|
|
|
|
|
|
|
all:
|
|
|
|
make -C CDCHost clean
|
|
|
|
make -C CDCHost all
|
|
|
|
|
2009-11-04 05:55:10 +01:00
|
|
|
make -C JoystickHostWithParser clean
|
|
|
|
make -C JoystickHostWithParser all
|
|
|
|
|
2009-09-20 14:46:26 +02:00
|
|
|
make -C KeyboardHost clean
|
|
|
|
make -C KeyboardHost all
|
|
|
|
|
2009-09-21 12:49:06 +02:00
|
|
|
make -C KeyboardHostWithParser clean
|
|
|
|
make -C KeyboardHostWithParser all
|
|
|
|
|
2009-10-08 10:46:27 +02:00
|
|
|
make -C MIDIHost clean
|
|
|
|
make -C MIDIHost all
|
|
|
|
|
2009-08-11 11:12:29 +02:00
|
|
|
make -C MouseHost clean
|
2009-08-13 08:43:17 +02:00
|
|
|
make -C MouseHost all
|
2009-08-11 11:12:29 +02:00
|
|
|
|
2009-09-21 12:49:06 +02:00
|
|
|
make -C MouseHostWithParser clean
|
|
|
|
make -C MouseHostWithParser all
|
|
|
|
|
2009-08-13 08:43:17 +02:00
|
|
|
make -C MassStorageHost clean
|
|
|
|
make -C MassStorageHost all
|
2009-08-30 13:36:04 +02:00
|
|
|
|
|
|
|
make -C StillImageHost clean
|
|
|
|
make -C StillImageHost all
|
2009-08-13 08:43:17 +02:00
|
|
|
|
2009-08-11 11:12:29 +02:00
|
|
|
%:
|
|
|
|
make -C CDCHost $@
|
2009-11-04 05:55:10 +01:00
|
|
|
make -C JoystickHostWithParser $@
|
2009-09-20 14:46:26 +02:00
|
|
|
make -C KeyboardHost $@
|
2009-09-21 12:49:06 +02:00
|
|
|
make -C KeyboardHostWithParser $@
|
2009-08-11 11:12:29 +02:00
|
|
|
make -C MouseHost $@
|
2009-09-21 12:49:06 +02:00
|
|
|
make -C MouseHostWithParser $@
|
2009-08-13 08:43:17 +02:00
|
|
|
make -C MassStorageHost $@
|
2009-08-30 13:36:04 +02:00
|
|
|
make -C StillImageHost $@
|