Add latex folder to .gitignore file

This commit is contained in:
Crayon2000 2017-12-03 20:22:36 -05:00
parent af794e3f18
commit ef110f7728
3 changed files with 8 additions and 4 deletions

6
.gitignore vendored
View file

@ -16,5 +16,9 @@ build
# Programmer's Notepad state file # Programmer's Notepad state file
*.pnps *.pnps
# Generated doxygen HTML documentation # Generated doxygen documentation
/doc /doc
/latex
# Temporary file
*.tmp

View file

@ -29,8 +29,8 @@ script:
- (cd GRRLIB && sudo -E make clean all install) - (cd GRRLIB && sudo -E make clean all install)
- (cd examples && make) - (cd examples && make)
- (cd GRRLIB && sudo -E make PLATFORM=cube clean all) - (cd GRRLIB && sudo -E make PLATFORM=cube clean all)
- doxygen grrlib.doxygen - doxygen grrlib.doxygen >/dev/null
- (cd latex && make) - make --directory=latex >/dev/null
before_deploy: before_deploy:
- touch doc/.nojekyll - touch doc/.nojekyll

View file

@ -58,7 +58,7 @@ PROJECT_LOGO =
# entered, it will be relative to the location where doxygen was started. If # entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used. # left blank the current directory will be used.
OUTPUT_DIRECTORY = . OUTPUT_DIRECTORY =
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # 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 # directories (in 2 levels) under the output directory of each output format and