summaryrefslogtreecommitdiff
path: root/lufa.mk
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2012-05-28 17:37:50 +0000
committerChristian Pointner <equinox@spreadspace.org>2012-05-28 17:37:50 +0000
commit18870c5c3046830db723381186c9153ff87c840a (patch)
tree7a3abdd5a674c63534444751051e45184b8c0158 /lufa.mk
parentignoring build stamps (diff)
added posibility to build external lufa lib (not perfect..)
git-svn-id: https://svn.spreadspace.org/avr/trunk@37 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'lufa.mk')
-rw-r--r--lufa.mk45
1 files changed, 45 insertions, 0 deletions
diff --git a/lufa.mk b/lufa.mk
new file mode 100644
index 0000000..709f9be
--- /dev/null
+++ b/lufa.mk
@@ -0,0 +1,45 @@
+##
+## spreadspace avr utils
+##
+##
+## Copyright (C) 2012 Christian Pointner <equinox@spreadspace.org>
+##
+## This file is part of spreadspace avr utils.
+##
+## spreadspace avr utils is free software: you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
+##
+## spreadspace avr utils is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>.
+##
+
+include ../defines.mk
+
+## TODO: change BOARD names for our tools too???
+LUFA_BOARD = TEENSY2
+
+include $(LUFA_PATH)/LUFA/makefile
+SRC = $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS)
+
+CFLAGS += -std=c99
+CFLAGS += -DF_USB=$(F_USB)UL
+CFLAGS += -DBOARD=BOARD_$(LUFA_BOARD) -DARCH=ARCH_$(ARCH)
+CFLAGS += $(LUFA_OPTS)
+
+OBJ = $(SRC:%.c=%.o)
+
+liblufa.a: $(OBJ)
+ $(AR) $@ $(OBJ)
+
+%.o: %.c
+ $(CC) -c $(CFLAGS) $< -o $@
+
+clean:
+ rm -f $(SRC:%.c=%.o)