forked from mnjey/XDUthesisBachelor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSConstruct
29 lines (24 loc) · 964 Bytes
/
SConstruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
## ----------------------------------------------------------------------
## START OF FILE
## ----------------------------------------------------------------------
##
## Filename: SConstruct
## Author: Fred Qi
## Created: 2009-06-06 23:38:27(+0800)
##
## ----------------------------------------------------------------------
### CHANGE LOG
## ----------------------------------------------------------------------
## Last-Updated: 2014-11-27 13:09:37(+0300) [by Fred Qi]
## Update #: 28
## ----------------------------------------------------------------------
import os
env = Environment(ENV = os.environ,
PDFLATEX = 'xelatex')
tmpl = Glob( 'xduthesis.c*' )
pdf = env.PDF(Glob('thesis-*.tex'))
Depends(pdf, ['abstract.tex', 'refs.bib'])
Depends(pdf, Glob('ch*.tex'))
## ----------------------------------------------------------------------
### END OF FILE
## ----------------------------------------------------------------------