SCM Repository
[diderot] Annotation of /branches/vis12-cl/doc/Makefile.in
Annotation of /branches/vis12-cl/doc/Makefile.in
Parent Directory
|
Revision Log
Revision 3349 -
(view)
(download)
1 : |
jhr |
1640 |
# Makefile for diderot documentation
|
2 : |
|
|
#
|
3 : |
jhr |
3349 |
# This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu)
|
4 : |
|
|
#
|
5 : |
|
|
# COPYRIGHT (c) 2015 The University of Chicago
|
6 : |
jhr |
1640 |
# All rights reserved.
|
7 : |
|
|
#
|
8 : |
|
|
|
9 : |
|
|
SHELL = @SHELL@
|
10 : |
|
|
@SET_MAKE@
|
11 : |
|
|
|
12 : |
|
|
DOXYGEN = @DOXYGEN@
|
13 : |
|
|
|
14 : |
jhr |
3226 |
.PHONY: doc man clean local-distclean local-devclean
|
15 : |
jhr |
1640 |
|
16 : |
jhr |
3226 |
doc: report/report.pdf man
|
17 : |
|
|
|
18 : |
|
|
report/report.pdf:
|
19 : |
|
|
(cd report; latexmk -pdf report) || exit $$?
|
20 : |
|
|
|
21 : |
|
|
man:
|
22 : |
|
|
(cd man; make all) || exit $$?
|
23 : |
|
|
|
24 : |
jhr |
1640 |
#################### Cleanup ####################
|
25 : |
|
|
|
26 : |
jhr |
2495 |
CLEAN_SUBDIRS = man
|
27 : |
jhr |
1640 |
|
28 : |
jhr |
3226 |
CLEAN_FILES = report/report.aux report/report.log \
|
29 : |
|
|
report/report.fls report/report.fdb_latexmk \
|
30 : |
|
|
report/report.bbl report/report.blg
|
31 : |
jhr |
1640 |
|
32 : |
jhr |
3226 |
DISTCLEAN_FILES += Makefile \
|
33 : |
|
|
report/report.pdf
|
34 : |
jhr |
1640 |
|
35 : |
jhr |
3226 |
DEVCLEAN_FILES =
|
36 : |
jhr |
1640 |
|
37 : |
|
|
include @DIDEROT_MKDIR@/clean-rules.gmk
|