aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-02 14:10:02 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-02 14:10:02 +0000
commit6a3a5f40da35524fc3bf9ad8dc3fcc8655b4392b (patch)
treec726ce97698cee928f01e04f98dad4d8347918cc /LUFA/makefile
parentecdffe2e41f13cc245e2e7cfab18486ea66330a7 (diff)
downloadlufa-6a3a5f40da35524fc3bf9ad8dc3fcc8655b4392b.tar.gz
lufa-6a3a5f40da35524fc3bf9ad8dc3fcc8655b4392b.tar.bz2
lufa-6a3a5f40da35524fc3bf9ad8dc3fcc8655b4392b.zip
Update library documentation on the standard LUFA makefile template configuration.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index 3fbf7ac36..8129befdf 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -27,8 +27,11 @@ ifneq ($(LUFA_PATH),)
LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA/
include $(LUFA_PATH)/LUFA/Build/lufa.sources.in
else
- LUFA_PATH = .
- ARCH = {AVR8,UC3,XMEGA}
+ LUFA_BUILD_MODULES += LIBCORE
+ LUFA_BUILD_TARGETS += export_tar version
+
+ LUFA_PATH = .
+ ARCH = {AVR8,UC3,XMEGA}
all:
@@ -37,6 +40,7 @@ else
rm -f $(LUFA_SRC_ALL_FILES:%.c=%.lst)
# Include LUFA build script makefiles
+ include Build/lufa.core.in
include Build/lufa.sources.in
include Build/lufa.doxygen.in
endif