diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-17 21:08:53 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-17 21:08:53 +0000 |
commit | 8cfb3d9f09f7b88b58fdc2e882713fa7d27ba44b (patch) | |
tree | 66348ed2fe3721f7479075a2105f7147aec85330 /Maintenance/makefile | |
parent | cca24c8dc90313eba722873df816a7573003a0f1 (diff) | |
download | lufa-8cfb3d9f09f7b88b58fdc2e882713fa7d27ba44b.tar.gz lufa-8cfb3d9f09f7b88b58fdc2e882713fa7d27ba44b.tar.bz2 lufa-8cfb3d9f09f7b88b58fdc2e882713fa7d27ba44b.zip |
Update project Doxygen and makefiles so that the resulting project documentation hides the unused version value, and uses the same HTML CSS stylesheet as the library core.
Diffstat (limited to 'Maintenance/makefile')
-rw-r--r-- | Maintenance/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Maintenance/makefile b/Maintenance/makefile index 8daf9c149..754ec6aa6 100644 --- a/Maintenance/makefile +++ b/Maintenance/makefile @@ -20,7 +20,9 @@ upgrade-doxygen: @for doxygen_conf in `find $(LUFA_ROOT) -name Doxygen.conf`; do \
doxygen -u $$doxygen_conf; \
sed "s/MARKDOWN_SUPPORT *= *YES/MARKDOWN_SUPPORT = NO/1" $$doxygen_conf > $$doxygen_conf.new; \
- mv -u $$doxygen_conf.new $$doxygen_conf; \
+ sed "s/DISABLE_INDEX *= *NO/DISABLE_INDEX = YES/1" $$doxygen_conf.new > $$doxygen_conf.new2; \
+ mv -u $$doxygen_conf.new2 $$doxygen_conf; \
+ rm $$doxygen_conf.new; \
done;
@echo Doxygen configuration update complete.
|