Mercurial > hg > octave-nkf
annotate libcruft/misc/Makefile.in @ 9581:3d0d2bda3a0f
fix previous change, avoid duplicate loads of methods in descendant classes
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 27 Aug 2009 16:08:23 +0200 |
parents | 32b15d5c3147 |
children | 11844593875a |
rev | line source |
---|---|
6 | 1 # Makefile for octave's libcruft/misc directory |
2 # | |
7017 | 3 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, |
8920 | 4 # 2006, 2007, 2008 John W. Eaton |
7017 | 5 # |
7016 | 6 # This file is part of Octave. |
7 # | |
8 # Octave is free software; you can redistribute it and/or modify it | |
9 # under the terms of the GNU General Public License as published by the | |
10 # Free Software Foundation; either version 3 of the License, or (at | |
11 # your option) any later version. | |
12 # | |
13 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 # for more details. | |
17 # | |
18 # You should have received a copy of the GNU General Public License | |
19 # along with Octave; see the file COPYING. If not, see | |
20 # <http://www.gnu.org/licenses/>. | |
6 | 21 |
22 TOPDIR = ../.. | |
23 | |
24 srcdir = @srcdir@ | |
411 | 25 top_srcdir = @top_srcdir@ |
6 | 26 VPATH = @srcdir@ |
27 | |
2051 | 28 EXTERNAL_DISTFILES = $(DISTFILES) |
29 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7448
diff
changeset
|
30 FSRC = d1mach.f r1mach.f i1mach.f |
6281 | 31 |
9372
32b15d5c3147
implement d1mach, i1mach, and r1mach using slamch and dlamch from lapack
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
32 CSRC = f77-fcn.c lo-error.c cquit.c |
6488 | 33 |
34 CXXSRC = f77-extern.cc quit.cc | |
35 | |
7888
c123bd09172e
Remove CEXTRA from MAKEDEPS
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
36 MAKEDEPS := $(patsubst %.c, %.d, $(CSRC)) $(patsubst %.cc, %.d, $(CXXSRC)) |
6488 | 37 |
38 INCLUDES := f77-fcn.h lo-error.h oct-dlldefs.h quit.h | |
39 | |
40 SPECIAL:= d1mach-tst.for $(INCLUDES) | |
41 | |
2051 | 42 include $(TOPDIR)/Makeconf |
43 | |
2547 | 44 INSTALL = @INSTALL@ |
45 INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
46 INSTALL_DATA = @INSTALL_DATA@ | |
47 | |
6 | 48 include ../Makerules |
49 | |
2811 | 50 install install-strip:: |
4413 | 51 $(top_srcdir)/mkinstalldirs $(DESTDIR)$(octincludedir)/octave |
3029 | 52 for f in $(INCLUDES); do \ |
4413 | 53 rm -f $(DESTDIR)$(octincludedir)/octave/$$f; \ |
54 $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(octincludedir)/octave/$$f; \ | |
2993 | 55 done |
56 $(mk-includedir-link) | |
2545 | 57 |
58 uninstall:: | |
4413 | 59 for f in $(INCLUDES); do rm -f $(DESTDIR)$(octincludedir)/octave/$$f; done |
2545 | 60 |
7448 | 61 ifdef omit_deps |
62 .PHONY: $(MAKEDEPS) | |
63 endif | |
64 | |
4155 | 65 -include $(MAKEDEPS) |