diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-10 19:24:58 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-10 19:24:58 +0000 |
commit | 359fbfe14d00ab378f85a36664820ea9ba538c3f (patch) | |
tree | 0929d5663a3be4dc078dda0aba5ba798ebb627ab /Maintenance | |
parent | e8570c4a37e41117e3fd1e989e0b41f1e9608f3c (diff) | |
download | lufa-359fbfe14d00ab378f85a36664820ea9ba538c3f.tar.gz lufa-359fbfe14d00ab378f85a36664820ea9ba538c3f.tar.bz2 lufa-359fbfe14d00ab378f85a36664820ea9ba538c3f.zip |
Add branch for the conversion of demos to use standard C header files for configuration, rather than makefile defined macros.
Diffstat (limited to 'Maintenance')
-rw-r--r-- | Maintenance/makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Maintenance/makefile b/Maintenance/makefile index 5cce2bf1c..8daf9c149 100644 --- a/Maintenance/makefile +++ b/Maintenance/makefile @@ -8,11 +8,12 @@ # Maintenance scripts not required by general LUFA users, used for project development purposes.
+
+# Path to the root of the LUFA tree
LUFA_ROOT = ../
all:
-
# Update all Doxygen configuration files to the latest Doxygen version - force Markdown support to be disabled
upgrade-doxygen:
@echo Upgrading Doxygen.conf files...
@@ -36,13 +37,6 @@ check-documentation-placeholders: fi;
@echo Done.
-# Test all generated documentation for any bad links
-check-documentation-links:
- @for html_file in `find $(LUFA_ROOT) -name *.html`; do \
- echo Checking $$html_file...; \
- cat $$html_file | grep -v "doxygen.org" | grep -v "fourwalledcubicle.com" | wget -nv --referer=www.lufa-lib.org --user-agent="lufa-link-check-script" -B $(dir $$html_file) --spider --force-html --input-file=-; \
- done;
-
# Validate the working branch - compile all documentation, demos/projects/examples and run build tests
validate-branch:
make -s -C $(LUFA_ROOT) doxygen
|