blob: 42bd73d724058d0e8d59d75a94f5df0996f25da5 (
plain)
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
30
31
32
33
34
|
# -*- make -*-
# (C) 2013 by Eugeniy Mikhailov, <evgmik@gmail.com>
PACKAGE_DIR = $(shell basename `pwd`)
tex_independent := manual.tex \
interferometry.tex \
emratio.tex \
ediffract.tex \
blackbody.tex \
pe-effect.tex \
two-photon-interference.tex \
faraday_rotation.tex \
spectr.tex \
supcon.tex
t2t_fig_files :=
tex_fig_files := $(wildcard pdf_figs/*.pdf)
tex_includes := title_page.tex evmik_manual.sty \
interferometry.tex \
emratio.tex \
ediffract.tex \
blackbody.tex \
pe-effect.tex \
two-photon-interference.tex \
faraday_rotation.tex \
spectr.tex \
supcon.tex
REQUIRED_TARGETS += pdf_tex html_t2t
INSTALL_TARGETS += install_pdf_tex install_html_t2t
|