~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to scripts/control/system/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for octave's scripts/control/system directory
 
2
#
 
3
# Copyright (C) 2000, 2002, 2005, 2006, 2007 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
TOPDIR = ../../..
 
22
 
 
23
script_sub_dir = control/system
 
24
 
 
25
srcdir = @srcdir@
 
26
top_srcdir = @top_srcdir@
 
27
VPATH = @srcdir@
 
28
 
 
29
include $(TOPDIR)/Makeconf
 
30
 
 
31
INSTALL = @INSTALL@
 
32
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
33
INSTALL_DATA = @INSTALL_DATA@
 
34
 
 
35
SOURCES = __abcddims__.m __syschnamesl__.m __sysconcat__.m \
 
36
  __syscont_disc__.m __sysdefioname__.m __sysdefstname__.m \
 
37
  __sysgroupn__.m __tf2sysl__.m __tfl__.m __zp2ssg2__.m \
 
38
  abcddim.m buildssic.m c2d.m cellidx.m d2c.m dmr2d.m fir2sys.m \
 
39
  is_abcd.m is_controllable.m is_detectable.m is_digital.m \
 
40
  is_observable.m is_sample.m is_signal_list.m is_siso.m \
 
41
  is_stabilizable.m is_stable.m jet707.m listidx.m moddemo.m \
 
42
  ord2.m packedform.m parallel.m ss.m ss2sys.m ss2tf.m ss2zp.m \
 
43
  starp.m sys2fir.m sys2ss.m sys2tf.m sys2zp.m sysadd.m \
 
44
  sysappend.m syschtsam.m sysconnect.m syscont.m sysdimensions.m \
 
45
  sysdisc.m sysdup.m sysgetsignals.m sysgettsam.m sysgettype.m \
 
46
  sysgroup.m sysidx.m sysmin.m sysmult.m sysout.m sysprune.m \
 
47
  sysreorder.m sysrepdemo.m sysscale.m syssetsignals.m syssub.m \
 
48
  sysupdate.m tf.m tf2ss.m tf2sys.m tf2zp.m tfout.m ugain.m zp.m \
 
49
  zp2ss.m zp2sys.m zp2tf.m zpout.m
 
50
 
 
51
DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES))
 
52
 
 
53
FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES))
 
54
FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))
 
55
 
 
56
all: PKG_ADD
 
57
.PHONY: all
 
58
 
 
59
install install-strip:
 
60
        $(do-script-install)
 
61
.PHONY: install install-strip
 
62
 
 
63
uninstall:
 
64
        $(do-script-uninstall)
 
65
.PHONY: uninstall
 
66
 
 
67
clean:
 
68
.PHONY: clean
 
69
 
 
70
PKG_ADD: $(FCN_FILES)
 
71
        @echo "making PKG_ADD"
 
72
        @$(do-mkpkgadd)
 
73
 
 
74
tags: $(SOURCES)
 
75
        ctags $(SOURCES)
 
76
 
 
77
TAGS: $(SOURCES)
 
78
        etags $(SOURCES)
 
79
 
 
80
mostlyclean: clean
 
81
.PHONY: mostlyclean
 
82
 
 
83
distclean: clean
 
84
        rm -f Makefile PKG_ADD
 
85
.PHONY: distclean
 
86
 
 
87
maintainer-clean: distclean
 
88
        rm -f tags TAGS
 
89
.PHONY: maintainer-clean
 
90
 
 
91
dist:
 
92
        ln $(DISTFILES) ../../../`cat ../../../.fname`/scripts/$(script_sub_dir)
 
93
.PHONY: dist