projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added User Application APIs to the CDC and DFU class bootloaders.
[pub/USBasp.git]
/
Bootloaders
/
makefile
diff --git
a/Bootloaders/makefile
b/Bootloaders/makefile
index
638cdc1
..
18bf143
100644
(file)
--- a/
Bootloaders/makefile
+++ b/
Bootloaders/makefile
@@
-1,9
+1,9
@@
#
# LUFA Library
#
# LUFA Library
-# Copyright (C) Dean Camera, 201
0
.
-#
+# Copyright (C) Dean Camera, 201
1
.
+#
# dean [at] fourwalledcubicle [dot] com
# dean [at] fourwalledcubicle [dot] com
-#
www.fourwalledcubicle.com
+#
www.lufa-lib.org
#
# Makefile to build all the LUFA USB Bootloaders. Call with "make all" to
#
# Makefile to build all the LUFA USB Bootloaders. Call with "make all" to
@@
-14,16
+14,17
@@
# code.
all:
# code.
all:
- $(MAKE) -C DFU clean
- $(MAKE) -C DFU all
-
$(MAKE) -C CDC clean
$(MAKE) -C CDC all
$(MAKE) -C CDC clean
$(MAKE) -C CDC all
-
- $(MAKE) -C TeensyHID clean
- $(MAKE) -C TeensyHID all
+
+ $(MAKE) -C HID clean
+ $(MAKE) -C HID all
+
+ $(MAKE) -C DFU clean
+ $(MAKE) -C DFU all
%:
%:
- $(MAKE) -C DFU $@
$(MAKE) -C CDC $@
$(MAKE) -C CDC $@
- $(MAKE) -C TeensyHID $@
+ $(MAKE) -C DFU $@
+ $(MAKE) -C HID $@
+