diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-06-20 14:38:21 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-06-20 14:38:21 +0000 |
| commit | 1601e1be4436a02bd497f5c9753c317ec508b3cb (patch) | |
| tree | 29cda8673e9de7ea22e927561623b5aca64e5030 /Projects/HIDReportViewer/makefile | |
| parent | efb72417c9e35b44daf4e38d676ac3848ecb9bad (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 'Projects/HIDReportViewer/makefile')
| -rw-r--r-- | Projects/HIDReportViewer/makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Projects/HIDReportViewer/makefile b/Projects/HIDReportViewer/makefile index 5b163600..ab8387d9 100644 --- a/Projects/HIDReportViewer/makefile +++ b/Projects/HIDReportViewer/makefile @@ -698,6 +698,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)
@@ -710,5 +719,4 @@ $(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
|
