~gabriel1984sibiu/octave/octave

« back to all changes in this revision

Viewing changes to doc/liboctave/Makefile.am

  • Committer: Grevutiu Gabriel
  • Date: 2014-01-02 13:05:54 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20140102130554-3r7ivdjln1ni6kcg
New version (3.8.0) from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for Octave's doc/liboctave directory
 
2
#
 
3
# Copyright (C) 1996-2013 John W. Eaton
 
4
#
 
5
# This file is part of Octave.
 
6
 
7
# Octave is free software; you can redistribute it and/or modify it
 
8
# under the terms of the GNU General Public License as published by the
 
9
# Free Software Foundation; either version 3 of the License, or (at
 
10
# your option) any later version.
 
11
 
12
# Octave is distributed in the hope that it will be useful, but WITHOUT
 
13
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
14
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
15
# for more details.
 
16
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with Octave; see the file COPYING.  If not, see
 
19
# <http://www.gnu.org/licenses/>.
 
20
 
 
21
include $(top_srcdir)/build-aux/common.mk
 
22
 
 
23
TEXINFO_TEX = ../texinfo.tex
 
24
 
 
25
info_TEXINFOS = liboctave.texi
 
26
 
 
27
liboctave_TEXINFOS = \
 
28
  array.texi \
 
29
  bugs.texi \
 
30
  cp-idx.texi \
 
31
  dae.texi \
 
32
  diffeq.texi \
 
33
  error.texi \
 
34
  factor.texi \
 
35
  fn-idx.texi \
 
36
  gpl.texi \
 
37
  install.texi \
 
38
  intro.texi \
 
39
  matvec.texi \
 
40
  nleqn.texi \
 
41
  nlfunc.texi \
 
42
  ode.texi \
 
43
  optim.texi \
 
44
  preface.texi \
 
45
  quad.texi \
 
46
  range.texi
 
47
 
 
48
all-local: dvi html pdf ps
 
49
 
 
50
## The texi2dvi script (used to create both PDF and DVI output formats)
 
51
## uses some fixed temporary file names.  In order to avoid a race condition
 
52
## the DVI and PDF builds are forced to run serially through a Makefile rule.
 
53
liboctave.pdf: liboctave.dvi
 
54
 
 
55
EXTRA_DIST = liboctave.dvi liboctave.html liboctave.pdf liboctave.ps
 
56
 
 
57
clean-local:
 
58
        rm -rf t2d_cache
 
59