aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-10 18:35:57 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-10 18:35:57 +0000
commit49424ce6b14e2de46d2957246e1d6f8751c47de2 (patch)
tree649a87e2c86c8fcbf8a3f7a9b047fa25d8f1e523 /LUFA/makefile
parentfae71b578068827f0357db91fa7b9e72ec6d5d32 (diff)
downloadlufa-49424ce6b14e2de46d2957246e1d6f8751c47de2.tar.gz
lufa-49424ce6b14e2de46d2957246e1d6f8751c47de2.tar.bz2
lufa-49424ce6b14e2de46d2957246e1d6f8751c47de2.zip
Make sure the main library core makefile does not interfere with the Doxygen module configuration if included in a legacy makefile.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index 7abd0145a..630ed8967 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -12,8 +12,6 @@
LUFA_VERSION_NUM := $(shell grep LUFA_VERSION_STRING Version.h | cut -d'"' -f2)
EXCLUDE_FROM_EXPORT := Documentation DoxygenPages CodeTemplates Build *.conf *.tar *.o *.lss *.lst *.hex *.elf *.hex *.eep *.map *.bin *.d
-DOXYGEN_OVERRIDE_PARAMS = PROJECT_NUMBER=$(LUFA_VERSION_NUM)
-
all:
export_tar:
@@ -30,11 +28,9 @@ ifneq ($(LUFA_PATH),)
LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA/
include $(LUFA_PATH)/LUFA/Build/lufa.sources.in
else
- LUFA_BUILD_MODULES += LIBCORE
- LUFA_BUILD_TARGETS += export_tar version
-
- LUFA_PATH = .
- ARCH = {AVR8,UC3,XMEGA}
+ LUFA_PATH = .
+ ARCH = {AVR8,UC3,XMEGA}
+ DOXYGEN_OVERRIDE_PARAMS = QUIET=YES PROJECT_NUMBER=$(LUFA_VERSION_NUM)
clean:
rm -f $(LUFA_SRC_ALL_FILES:%.c=%.o)