aboutsummaryrefslogtreecommitdiff
path: root/Demos/Device/ClassDriver/DualVirtualSerial/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-06-20 14:38:21 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-06-20 14:38:21 +0000
commit1601e1be4436a02bd497f5c9753c317ec508b3cb (patch)
tree29cda8673e9de7ea22e927561623b5aca64e5030 /Demos/Device/ClassDriver/DualVirtualSerial/makefile
parentefb72417c9e35b44daf4e38d676ac3848ecb9bad (diff)
Add new "checksource" target to the library makefiles, for automated source file existance checking.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1821 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/ClassDriver/DualVirtualSerial/makefile')
-rw-r--r--Demos/Device/ClassDriver/DualVirtualSerial/makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/DualVirtualSerial/makefile b/Demos/Device/ClassDriver/DualVirtualSerial/makefile
index 75d9bed9..04680ea7 100644
--- a/Demos/Device/ClassDriver/DualVirtualSerial/makefile
+++ b/Demos/Device/ClassDriver/DualVirtualSerial/makefile
@@ -701,6 +701,15 @@ doxygen:
clean_doxygen:
rm -rf Documentation
+checksource:
+ @for f in $(SRC) $(CPPSRC) $(ASRC); do \
+ if [ -f $$f ]; then \
+ echo "Found Source File: $$f" ; \
+ else \
+ echo "Source File Not Found: $$f" ; \
+ fi; done
+
+
# Create object files directory
$(shell mkdir $(OBJDIR) 2>/dev/null)
@@ -713,5 +722,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
.PHONY : all begin finish end sizebefore sizeafter gccversion \
build elf hex eep lss sym coff extcoff doxygen clean \
clean_list clean_doxygen program dfu flip flip-ee dfu-ee \
-debug gdb-config
+debug gdb-config checksource