Skip to content
Snippets Groups Projects
Commit 5b9db15a authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Fixed doxyfile and makefile so that source directory isn't deleted on clean.

parent df7dd1a6
Branches
Tags
No related merge requests found
...@@ -128,7 +128,7 @@ RM := rm ...@@ -128,7 +128,7 @@ RM := rm
ifeq ($(os),Windows) ifeq ($(os),Windows)
RMDIR := rmdir /S /Q RMDIR := rmdir /S /Q
else else
RMDIR := rm -R RMDIR := rm -df || true
endif endif
# On Windows, we need to override the shell to force the use of cmd.exe # On Windows, we need to override the shell to force the use of cmd.exe
...@@ -476,7 +476,7 @@ doc: ...@@ -476,7 +476,7 @@ doc:
.PHONY: cleandoc .PHONY: cleandoc
cleandoc: cleandoc:
@$(if $(wildcard $(docdir)),echo $(MSG_CLEAN_DOC)) @$(if $(wildcard $(docdir)),echo $(MSG_CLEAN_DOC))
$(Q)$(if $(wildcard $(docdir)),$(RM) --recursive $(docdir)) $(Q)$(if $(wildcard $(docdir)),$(RM) -r $(docdir))
# Rebuild the Doxygen generated documentation. # Rebuild the Doxygen generated documentation.
.PHONY: rebuilddoc .PHONY: rebuilddoc
......
...@@ -655,7 +655,7 @@ WARN_LOGFILE = ...@@ -655,7 +655,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories # directories like "/usr/src/myproject". Separate the files or directories
# with spaces. # with spaces.
INPUT ="../src" INPUT ="./src"
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
...@@ -673,7 +673,7 @@ INPUT_ENCODING = UTF-8 ...@@ -673,7 +673,7 @@ INPUT_ENCODING = UTF-8
# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
# *.f90 *.f *.for *.vhd *.vhdl # *.f90 *.f *.for *.vhd *.vhdl
FILE_PATTERNS = FILE_PATTERNS = *.c *.cpp *.h
# The RECURSIVE tag can be used to turn specify whether or not subdirectories # The RECURSIVE tag can be used to turn specify whether or not subdirectories
# should be searched for input files as well. Possible values are YES and NO. # should be searched for input files as well. Possible values are YES and NO.
...@@ -687,7 +687,7 @@ RECURSIVE = YES ...@@ -687,7 +687,7 @@ RECURSIVE = YES
# Note that relative paths are relative to the directory from which doxygen is # Note that relative paths are relative to the directory from which doxygen is
# run. # run.
EXCLUDE = EXCLUDE ="./src/asf"
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded # directories that are symbolic links (a Unix file system feature) are excluded
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment