SCM Repository
Annotation of /branches/cuda/doc/src/Makefile.in
Parent Directory
|
Revision Log
Revision 5597 - (view) (download)
1 : | jhr | 5597 | # Makefile for diderot documentation |
2 : | # | ||
3 : | # This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) | ||
4 : | # | ||
5 : | # COPYRIGHT (c) 2015 The University of Chicago | ||
6 : | # All rights reserved. | ||
7 : | # | ||
8 : | |||
9 : | SHELL = @SHELL@ | ||
10 : | @SET_MAKE@ | ||
11 : | |||
12 : | DOXYGEN = @DOXYGEN@ | ||
13 : | |||
14 : | .PHONY: doc man clean local-distclean local-devclean | ||
15 : | |||
16 : | 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 : | #################### Cleanup #################### | ||
25 : | |||
26 : | CLEAN_SUBDIRS = man | ||
27 : | |||
28 : | CLEAN_FILES = report/report.aux report/report.log \ | ||
29 : | report/report.fls report/report.fdb_latexmk \ | ||
30 : | report/report.bbl report/report.blg | ||
31 : | |||
32 : | DISTCLEAN_FILES += Makefile \ | ||
33 : | report/report.pdf | ||
34 : | |||
35 : | DEVCLEAN_FILES = | ||
36 : | |||
37 : | include @DIDEROT_MKDIR@/clean-rules.gmk |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |