~gabriel1984sibiu/octave/octave

« back to all changes in this revision

Viewing changes to examples/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 examples 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
EXTRA_DIST = 
 
24
 
 
25
FCN_FILE_DIRS =
 
26
 
 
27
FCN_FILES =
 
28
 
 
29
include @polynomial/module.mk
 
30
include @FIRfilter/module.mk
 
31
 
 
32
EXTRA_DIST += \
 
33
  $(FCN_FILES) \
 
34
  addtwomatrices.cc \
 
35
  celldemo.cc \
 
36
  embedded.cc \
 
37
  fortdemo.cc \
 
38
  fortsub.f \
 
39
  funcdemo.cc \
 
40
  globaldemo.cc \
 
41
  helloworld.cc \
 
42
  make_int.cc \
 
43
  mex_demo.c \
 
44
  mycell.c \
 
45
  myfeval.c \
 
46
  myfevalf.f \
 
47
  myfunc.c \
 
48
  myhello.c \
 
49
  mypow2.c \
 
50
  myprop.c \
 
51
  myset.c \
 
52
  mysparse.c \
 
53
  mystring.c \
 
54
  mystruct.c \
 
55
  oct_demo.cc \
 
56
  oregonator.cc \
 
57
  oregonator.m \
 
58
  paramdemo.cc \
 
59
  standalone.cc \
 
60
  standalonebuiltin.cc \
 
61
  stringdemo.cc \
 
62
  structdemo.cc \
 
63
  unwinddemo.cc
 
64