Skip to content

Commit

Permalink
rename doc dir to docs
Browse files Browse the repository at this point in the history
To be consistent with other projects, use the same directory name for docs.

Signed-off-by: Joshua Henderson <[email protected]>
  • Loading branch information
joshua-henderson committed Mar 2, 2018
1 parent 987ffd5 commit 65728dc
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ Makefile.in
/apps/grab
/apps/render
/apps/dfblayers
/Doxyfile
8 changes: 4 additions & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src apps python

EXTRA_DIST = README.md COPYING Doxyfile.in
EXTRA_DIST = README.md COPYING docs/Doxyfile.in

.PHONY: doc
.PHONY: docs

doc: Doxyfile
@doxygen
docs: docs/Doxyfile
@cd docs && doxygen
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Microchip](doc/microchip_logo.png)
![Microchip](docs/microchip_logo.png)

# Microchip Hardware LCD Plane Library

Expand Down Expand Up @@ -59,9 +59,9 @@ configure line:

If you have doxygen installed, you can generate the API documentation by running:

make doc
make docs

The resulting documentation will be in the doc directory.
The resulting documentation will be in the docs directory.

## Python Bindings

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,5 @@ AC_CONFIG_FILES([Makefile
apps/Makefile
python/Makefile
libplanes.pc
Doxyfile])
docs/Doxyfile])
AC_OUTPUT
1 change: 1 addition & 0 deletions doc/.gitignore → docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
html
latex
Doxyfile
10 changes: 5 additions & 5 deletions Doxyfile.in → docs/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME =
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER =
PROJECT_NUMBER = @PACKAGE_VERSION@

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand All @@ -51,14 +51,14 @@ PROJECT_BRIEF =
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.

PROJECT_LOGO = doc/logo55.png
PROJECT_LOGO = logo55.png

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.

OUTPUT_DIRECTORY = doc
OUTPUT_DIRECTORY = .

# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and
Expand Down Expand Up @@ -771,7 +771,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT = include src README.md doc
INPUT = ../include ../src ../README.md .

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down Expand Up @@ -1140,7 +1140,7 @@ HTML_EXTRA_STYLESHEET =
# files will be copied as-is; there are no commands or markers available.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_FILES = doc/microchip_logo.png
HTML_EXTRA_FILES = microchip_logo.png

# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
# will adjust the colors in the style sheet and background images according to
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
2 changes: 1 addition & 1 deletion include/planes/engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ enum {
/**
* Parse a JSON plane configuration file and populate the planes array.
*
* See @ref doc/config.md for information on the config file format.
* See @ref docs/config.md for information on the config file format.
*
* @note This will overwrite anything that may already be in the array.
*
Expand Down
2 changes: 1 addition & 1 deletion libplanes.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ libdir=@libdir@
includedir=@includedir@

Name: libplanes
Description: Utility library for working with hardware planes
Description: Microchip library for working with hardware LCD planes
Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lplanes
Cflags: -I${includedir} -I${includedir}/planes

0 comments on commit 65728dc

Please sign in to comment.