aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-10 18:40:39 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-10 18:40:39 +0000
commitfe3a5c24623030306bca129a4653323f0bfb80bc (patch)
tree15172fa3d0c1bba1e1d62370bd92dfbb7efd4c2a /LUFA/makefile
parent49424ce6b14e2de46d2957246e1d6f8751c47de2 (diff)
downloadlufa-fe3a5c24623030306bca129a4653323f0bfb80bc.tar.gz
lufa-fe3a5c24623030306bca129a4653323f0bfb80bc.tar.bz2
lufa-fe3a5c24623030306bca129a4653323f0bfb80bc.zip
Fix up core library makefile clean target to properly remove dependency files.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index 630ed8967..6b5d8c7de 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -10,7 +10,7 @@
# ---------------------------------------
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
+EXCLUDE_FROM_EXPORT := Documentation DoxygenPages CodeTemplates Build *.conf *.tar *.o *.d *.lss *.lst *.hex *.elf *.hex *.eep *.map *.bin
all:
@@ -26,6 +26,7 @@ version:
# Check if this is being included from a legacy or non LUFA build system makefile
ifneq ($(LUFA_PATH),)
LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA/
+
include $(LUFA_PATH)/LUFA/Build/lufa.sources.in
else
LUFA_PATH = .
@@ -34,10 +35,9 @@ else
clean:
rm -f $(LUFA_SRC_ALL_FILES:%.c=%.o)
- rm -f $(LUFA_SRC_ALL_FILES:%.c=%.o.d)
+ rm -f $(LUFA_SRC_ALL_FILES:%.c=%.d)
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