-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconfig.mk
More file actions
22 lines (18 loc) · 772 Bytes
/
config.mk
File metadata and controls
22 lines (18 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Here goes the list of source files to make html and xhtml files
# (and any other commands you want run in the makefile in the gh-pages branch before making the (x)html)
#
# This will automatically include anything ending in .tex or .md.
# If you want to have only files you specify, comment out the following and make an explicit list
# (like the commented example at the end).
# temporary directory to put pdfs, htmls, etc in:
DISPLAYDIR = .
## Exclude these:
EXCLUDE_TEXFILES = macros.tex
EXCLUDE_MDFILES = publish_notes.md test_document.Rmd
## Include everything but the above
TEXFILES = $(wildcard *.tex)
MDFILES = $(wildcard *.md)
RMDFILES = $(wildcard *.Rmd)
## Or only specific files
# MDFILES = outline.md
# TEXFILES = introduction.tex summary-stats.tex