Mercurial > hg > octave-nkf
annotate Makeconf.in @ 9187:a3237ae32c0d
eliminate last remnants of F2C variables
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 07 May 2009 16:43:03 -0400 |
parents | 49a0c58a7dcf |
children | 8a348e4be8bb |
rev | line source |
---|---|
860 | 1 # @configure_input@ |
5 | 2 # |
3 # Common configuration rules for all of octave's Makefiles. | |
4 # | |
7017 | 5 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
8920 | 6 # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 John W. Eaton |
7017 | 7 # |
7016 | 8 # This file is part of Octave. |
9 # | |
10 # Octave is free software; you can redistribute it and/or modify it | |
11 # under the terms of the GNU General Public License as published by the | |
12 # Free Software Foundation; either version 3 of the License, or (at | |
13 # your option) any later version. | |
14 # | |
15 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
16 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
17 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
18 # for more details. | |
19 # | |
20 # You should have received a copy of the GNU General Public License | |
21 # along with Octave; see the file COPYING. If not, see | |
22 # <http://www.gnu.org/licenses/>. | |
1450 | 23 |
5 | 24 SHELL = /bin/sh |
25 | |
4544 | 26 AWK = @AWK@ |
27 export AWK | |
28 | |
4084 | 29 SED = @SED@ |
4299 | 30 export SED |
4084 | 31 |
7244 | 32 FIND = @FIND@ |
33 export FIND | |
34 | |
5465 | 35 PERL = @PERL@ |
8444
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8417
diff
changeset
|
36 export PERL |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8417
diff
changeset
|
37 |
5495 | 38 PYTHON = @PYTHON@ |
5465 | 39 |
7361 | 40 GNUPLOT = @GNUPLOT@ |
41 | |
5468 | 42 DESKTOP_FILE_INSTALL = @DESKTOP_FILE_INSTALL@ |
43 | |
3029 | 44 # A shell command to extract the version number from version.h. |
4449 | 45 getversion = $(SED) -e '/OCTAVE_VERSION/!d' -e 's/.*"\(.*\)".*$$/\1/' -e q |
46 | |
47 # A shell command to extract the API version number from version.h. | |
48 getapiversion = $(SED) -e '/OCTAVE_API_VERSION/!d' -e 's/.*"\(.*\)".*$$/\1/' -e q | |
3029 | 49 |
50 # Look for version.h to get version information. | |
51 xfiles := $(TOPDIR)/src/version.h $(srcdir)/$(TOPDIR)/src/version.h | |
52 version_file := $(firstword $(foreach file, $(xfiles), $(wildcard $(file)))) | |
53 version := $(shell $(getversion) $(version_file)) | |
5658 | 54 api_version := $(shell $(getapiversion) $(version_file)) |
3029 | 55 |
5 | 56 #### Start of system configuration section. #### |
57 | |
3892 | 58 EXEEXT = @EXEEXT@ |
2577 | 59 |
4098 | 60 BUILD_EXEEXT = @BUILD_EXEEXT@ |
61 | |
5 | 62 LEX = @LEX@ |
63 LFLAGS = @LFLAGS@ | |
64 LEXLIB = @LEXLIB@ | |
65 | |
66 YACC = @YACC@ | |
67 YFLAGS = -dv | |
68 | |
3675 | 69 GPERF = @GPERF@ |
70 | |
1462 | 71 AR = @AR@ |
72 ARFLAGS = @ARFLAGS@ | |
73 | |
3775 | 74 TEMPLATE_AR = @TEMPLATE_AR@ |
75 TEMPLATE_ARFLAGS = @TEMPLATE_ARFLAGS@ | |
76 | |
5 | 77 RANLIB = @RANLIB@ |
78 | |
1722 | 79 LN_S = @LN_S@ |
80 | |
5934 | 81 MAKEINFO = @MAKEINFO@ |
82 TEXI2DVI = @TEXI2DVI@ | |
83 TEXI2PDF = @TEXI2PDF@ | |
84 | |
85 GHOSTSCRIPT = @GHOSTSCRIPT@ | |
2518 | 86 |
5 | 87 DEFAULT_PAGER = @DEFAULT_PAGER@ |
88 | |
4128 | 89 ENABLE_DYNAMIC_LINKING = @ENABLE_DYNAMIC_LINKING@ |
702 | 90 |
3034 | 91 STATIC_LIBS = @STATIC_LIBS@ |
92 | |
1679 | 93 SHARED_LIBS = @SHARED_LIBS@ |
94 SHLEXT = @SHLEXT@ | |
4126 | 95 SHLEXT_VER = @SHLEXT_VER@ |
4102 | 96 SHLLIB = @SHLLIB@ |
4627 | 97 SHLLIB_VER = @SHLLIB_VER@ |
4102 | 98 SHLBIN = @SHLBIN@ |
4126 | 99 SHLBIN_VER = @SHLBIN_VER@ |
100 SHLLINKEXT= | |
4102 | 101 |
3029 | 102 LIBEXT = a |
6051 | 103 LIBPRE = @LIBPRE@ |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9078
diff
changeset
|
104 SHLPRE = @SHLPRE@ |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8560
diff
changeset
|
105 SHLBINPRE = @SHLBINPRE@ |
1667 | 106 |
5 | 107 # Fortran compiler flags. |
108 | |
1163 | 109 FC = @FC@ |
798 | 110 F77 = @F77@ |
5 | 111 FFLAGS = @FFLAGS@ |
1832 | 112 FPICFLAG = @FPICFLAG@ |
2610 | 113 ALL_FFLAGS = $(FFLAGS) |
5498 | 114 F77_FLOAT_STORE_FLAG = @F77_FLOAT_STORE_FLAG@ |
5 | 115 |
6102 | 116 F77_TOLOWER=@F77_TOLOWER@ |
117 F77_APPEND_UNDERSCORE=@F77_TOLOWER@ | |
118 F77_APPEND_EXTRA_UNDERSCORE=@F77_TOLOWER@ | |
119 | |
5 | 120 # cc and associated flags. |
121 | |
236 | 122 # Clean up INCFLAGS a bit if we are not compiling in a separate |
123 # directory. | |
124 ifeq ($(srcdir),.) | |
2546 | 125 TMP_IF_1 = -I. |
236 | 126 else |
2546 | 127 TMP_IF_1 = -I. -I$(srcdir) |
236 | 128 endif |
404 | 129 ifeq ($(TOPDIR),$(top_srcdir)) |
5164 | 130 TMP_IF_2 = \ |
131 -I$(TOPDIR) \ | |
132 -I$(TOPDIR)/liboctave \ | |
133 -I$(TOPDIR)/src \ | |
134 -I$(TOPDIR)/libcruft/misc | |
236 | 135 else |
5164 | 136 TMP_IF_2 = \ |
137 -I$(TOPDIR) \ | |
138 -I$(TOPDIR)/liboctave \ | |
139 -I$(TOPDIR)/src \ | |
140 -I$(TOPDIR)/libcruft/misc \ | |
141 -I$(top_srcdir) \ | |
142 -I$(top_srcdir)/liboctave \ | |
143 -I$(top_srcdir)/src \ | |
144 -I$(top_srcdir)/libcruft/misc | |
236 | 145 endif |
7253 | 146 INCFLAGS = $(TMP_IF_1) $(TMP_IF_2) |
236 | 147 |
8560
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8547
diff
changeset
|
148 X11_INCFLAGS = @X11_INCFLAGS@ |
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8547
diff
changeset
|
149 X11_LIBS = @X11_LIBS@ |
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8547
diff
changeset
|
150 |
8771
d3382daaf4d2
Use CARBON_LIBS instead of LIBS for framework Carbon.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8719
diff
changeset
|
151 CARBON_LIBS = @CARBON_LIBS@ |
d3382daaf4d2
Use CARBON_LIBS instead of LIBS for framework Carbon.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8719
diff
changeset
|
152 |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
153 MAGICK_CONFIG = @MAGICK_CONFIG@ |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
154 MAGICK_INCFLAGS = $(shell $(MAGICK_CONFIG) --cppflags) |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
155 MAGICK_LIBS = $(shell $(MAGICK_CONFIG) --ldflags --libs) |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
156 |
5 | 157 LIBFLAGS = -L$(TOPDIR) |
236 | 158 |
5 | 159 DEFS = @DEFS@ |
160 | |
2032 | 161 UGLY_DEFS = @UGLY_DEFS@ |
162 | |
5 | 163 CC = @CC@ |
1891 | 164 CC_VERSION = @CC_VERSION@ |
5 | 165 CFLAGS = @CFLAGS@ |
1832 | 166 CPICFLAG = @CPICFLAG@ |
3126 | 167 XTRA_CFLAGS = @XTRA_CFLAGS@ |
4626 | 168 WARN_CFLAGS = @WARN_CFLAGS@ |
6141 | 169 ALL_CFLAGS = $(INCFLAGS) $(DLL_CDEFS) $(DEFS) $(XTRA_CFLAGS) $(WARN_CFLAGS) $(CFLAGS) |
4626 | 170 BUG_CFLAGS = $(DEFS) $(XTRA_CFLAGS) $(WARN_CFLAGS) $(CFLAGS) |
798 | 171 |
4094 | 172 BUILD_CC = @BUILD_CC@ |
173 BUILD_CFLAGS = @BUILD_CFLAGS@ | |
4093 | 174 |
3775 | 175 DEPEND_FLAGS = @DEPEND_FLAGS@ |
176 DEPEND_EXTRA_SED_PATTERN = @DEPEND_EXTRA_SED_PATTERN@ | |
6087 | 177 INCLUDE_DEPS = @INCLUDE_DEPS@ |
178 ifeq ($(INCLUDE_DEPS),false) | |
179 omit_deps = true; | |
180 endif | |
3775 | 181 |
7914
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7874
diff
changeset
|
182 GRAPHICS_CFLAGS = @GRAPHICS_CFLAGS@ |
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7874
diff
changeset
|
183 |
198 | 184 CXX = @CXX@ |
1891 | 185 CXX_VERSION = @CXX_VERSION@ |
518 | 186 CXXCPP = @CXXCPP@ |
198 | 187 CXXFLAGS = @CXXFLAGS@ |
1832 | 188 CXXPICFLAG = @CXXPICFLAG@ |
3126 | 189 XTRA_CXXFLAGS = @XTRA_CXXFLAGS@ |
4626 | 190 WARN_CXXFLAGS = @WARN_CXXFLAGS@ |
191 ALL_CXXFLAGS = \ | |
6141 | 192 $(INCFLAGS) $(DLL_CXXDEFS) $(DEFS) $(XTRA_CXXFLAGS) $(WARN_CXXFLAGS) $(CXXFLAGS) |
4626 | 193 BUG_CXXFLAGS = $(DEFS) $(XTRA_CXXFLAGS) $(WARN_CXXFLAGS) $(CXXFLAGS) |
5 | 194 |
4094 | 195 BUILD_CXX = @BUILD_CXX@ |
196 BUILD_CXXFLAGS = @BUILD_CXXFLAGS@ | |
4093 | 197 |
858 | 198 CPPFLAGS = @CPPFLAGS@ |
199 | |
3705 | 200 LD_CXX = @LD_CXX@ |
5 | 201 LDFLAGS = @LDFLAGS@ |
708 | 202 LD_STATIC_FLAG = @LD_STATIC_FLAG@ |
3887 | 203 ALL_LDFLAGS = $(LIBFLAGS) $(LD_STATIC_FLAG) $(CPICFLAG) $(LDFLAGS) |
5 | 204 |
4298 | 205 BUILD_LDFLAGS = @BUILD_LDFLAGS@ |
206 | |
2676 | 207 SH_LD = @SH_LD@ |
208 SH_LDFLAGS = @SH_LDFLAGS@ | |
209 | |
4759 | 210 DL_LD = @DL_LD@ |
211 DL_LDFLAGS = @DL_LDFLAGS@ | |
212 | |
3036 | 213 SONAME_FLAGS = @SONAME_FLAGS@ |
214 | |
3233 | 215 RDYNAMIC_FLAG = @RDYNAMIC_FLAG@ |
216 | |
2674 | 217 RLD_FLAG = @RLD_FLAG@ |
218 | |
5 | 219 FLIBS = @FLIBS@ |
708 | 220 |
5451 | 221 LIBGLOB = @LIBGLOB@ |
3156 | 222 LIBOCTINTERP = @LIBOCTINTERP@ |
223 LIBOCTAVE = @LIBOCTAVE@ | |
224 LIBCRUFT = @LIBCRUFT@ | |
4102 | 225 LIBREADLINE = @LIBREADLINE@ |
226 TERMLIBS = @TERMLIBS@ | |
3726 | 227 |
7874
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7825
diff
changeset
|
228 FT2_LIBS = @FT2_LIBS@ |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7825
diff
changeset
|
229 GRAPHICS_LIBS = @GRAPHICS_LIBS@ |
6823 | 230 QHULL_LIBS = @QHULL_LIBS@ |
5585 | 231 REGEX_LIBS = @REGEX_LIBS@ |
3726 | 232 BLAS_LIBS = @BLAS_LIBS@ |
3827 | 233 FFTW_LIBS = @FFTW_LIBS@ |
5235 | 234 GLPK_LIBS = @GLPK_LIBS@ |
6043 | 235 CURL_LIBS = @CURL_LIBS@ |
5451 | 236 AMD_LIBS = @AMD_LIBS@ |
6024 | 237 CAMD_LIBS = @CAMD_LIBS@ |
5270 | 238 UMFPACK_LIBS = @UMFPACK_LIBS@ |
5451 | 239 COLAMD_LIBS = @COLAMD_LIBS@ |
240 CCOLAMD_LIBS = @CCOLAMD_LIBS@ | |
241 CHOLMOD_LIBS = @CHOLMOD_LIBS@ | |
5610 | 242 CXSPARSE_LIBS = @CXSPARSE_LIBS@ |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7698
diff
changeset
|
243 OPENGL_LIBS = @OPENGL_LIBS@ |
8547
d66c9b6e506a
imported patch qrupdate.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8444
diff
changeset
|
244 QRUPDATE_LIBS = @QRUPDATE_LIBS@ |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8005
diff
changeset
|
245 ARPACK_LIBS = @ARPACK_LIBS@ |
3726 | 246 LIBS = @LIBS@ |
5 | 247 |
5275 | 248 USE_64_BIT_IDX_T = @USE_64_BIT_IDX_T@ |
249 | |
5708 | 250 TEXINFO_COLAMD = @TEXINFO_COLAMD@ |
251 TEXINFO_CHOLMOD = @TEXINFO_CHOLMOD@ | |
252 TEXINFO_UMFPACK = @TEXINFO_UMFPACK@ | |
6855 | 253 TEXINFO_QHULL = @TEXINFO_QHULL@ |
5708 | 254 |
2155 | 255 # The arguments passed to configure. |
2156 | 256 config_opts = @config_opts@ |
2155 | 257 |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8772
diff
changeset
|
258 CONFIG_SUBDIRS = @subdirs@ |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8772
diff
changeset
|
259 |
666 | 260 # ==================== Where To Install Things ==================== |
5 | 261 |
666 | 262 # The default location for installation. Everything is placed in |
263 # subdirectories of this directory. The default values for many of | |
264 # the variables below are expressed in terms of this one, so you may | |
265 # not need to change them. This defaults to /usr/local. | |
266 prefix = @prefix@ | |
5 | 267 |
666 | 268 # Like `prefix', but used for architecture-specific files. |
269 exec_prefix = @exec_prefix@ | |
270 | |
271 # Where to install Octave and other binaries that people will want to | |
272 # run directly. | |
273 bindir = @bindir@ | |
5 | 274 |
4411 | 275 # Normally the directory for installing executables that system |
276 # administrators run. This is the same as libexecdir on Cygwin systems. | |
277 sbindir = @sbindir@ | |
278 | |
5844 | 279 # The root of the directory tree for read-only |
280 # architecture-independent data files. | |
281 datarootdir = @datarootdir@ | |
282 | |
666 | 283 # Where to install architecture-independent data files. ${fcnfiledir} |
284 # and ${localfcnfiledir} are subdirectories of this. | |
285 datadir = @datadir@ | |
5 | 286 |
3141 | 287 libdir = @libdir@ |
288 | |
8940
6994961bf1f4
use doc-cache instead of DOC for doc cache file name
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
289 # Where to install and expect extra files like NEWS and doc-cache. |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
290 octetcdir = @octetcdir@ |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
291 |
666 | 292 # Where to install and expect libraries like libcruft.a, liboctave.a, |
3141 | 293 # and other architecture-dependent data. |
294 octlibdir = @octlibdir@ | |
5 | 295 |
1720 | 296 # Where to install and expect executable programs to be run by Octave |
297 # rather than directly by users. | |
298 libexecdir = @libexecdir@ | |
299 | |
2141 | 300 # The prefix for Octave's include file directory. The default is |
301 # ${prefix}/include | |
2223 | 302 includedir = @includedir@ |
2141 | 303 |
666 | 304 # Where to install Octave's man pages, and what extension they should |
305 # have. The default is ${prefix}/man/man1 | |
306 mandir = @mandir@ | |
2223 | 307 man1dir = @man1dir@ |
308 man1ext = @man1ext@ | |
5 | 309 |
8865
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8850
diff
changeset
|
310 # The full path to the default doc cache file. |
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8850
diff
changeset
|
311 doc_cache_file = @doc_cache_file@ |
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8850
diff
changeset
|
312 |
666 | 313 # Where to install and expect the info files describing Octave.. |
314 infodir = @infodir@ | |
315 | |
8865
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8850
diff
changeset
|
316 # The full path to the default info file. |
2512 | 317 infofile = @infofile@ |
318 | |
666 | 319 # ==================== Octave-specific directories ==================== |
320 | |
2993 | 321 # These variables hold the values specific to Octave. They are |
666 | 322 # based on the values of the standard Make variables above. |
323 | |
5451 | 324 # What is the path separation character |
325 sepchar = @sepchar@ | |
326 | |
3597 | 327 # Where to install Octave's include files (they will actually be |
328 # installed in a subdirectory called octave). The default is | |
2993 | 329 # ${includedir}/octave-${version} |
330 octincludedir = @octincludedir@ | |
331 | |
666 | 332 # Where to install the function file distributed with |
333 # Octave. This includes the Octave version, so that the | |
334 # function files for different versions of Octave will install | |
335 # themselves in separate directories. | |
336 fcnfiledir = @fcnfiledir@ | |
337 | |
338 # Directories Octave should search for function files specific | |
339 # to this site (i.e. customizations), before consulting | |
340 # ${fcnfiledir}. This should be a colon-separated list of | |
341 # directories. | |
827 | 342 localfcnfiledir = @localfcnfiledir@ |
4449 | 343 localapifcnfiledir = @localapifcnfiledir@ |
3597 | 344 localverfcnfiledir = @localverfcnfiledir@ |
5 | 345 |
666 | 346 # Where to put executables to be run by Octave rather than |
347 # the user. This path usually includes the Octave version | |
348 # and configuration name, so that multiple configurations | |
349 # for multiple versions of Octave may be installed at once. | |
350 archlibdir = @archlibdir@ | |
351 | |
2439 | 352 # Where to put executables to be run by Octave rather than by the |
353 # user that are specific to this site. | |
354 localarchlibdir = @localarchlibdir@ | |
5909 | 355 localapiarchlibdir = @localapiarchlibdir@ |
3597 | 356 localverarchlibdir = @localverarchlibdir@ |
2439 | 357 |
666 | 358 # Where to put object files that will by dynamically loaded. |
359 # This path usually includes the Octave version and configuration | |
360 # name, so that multiple configurations for multiple versions of | |
361 # Octave may be installed at once. | |
362 octfiledir = @octfiledir@ | |
5 | 363 |
666 | 364 # Directories Octave should search for object files that will be |
365 # dynamically loaded and that are specific to this site | |
366 # (i.e. customizations), before consulting ${octfiledir}. This should | |
367 # be a colon-separated list of directories. | |
827 | 368 localoctfiledir = @localoctfiledir@ |
4449 | 369 localapioctfiledir = @localapioctfiledir@ |
3597 | 370 localveroctfiledir = @localveroctfiledir@ |
666 | 371 |
5814 | 372 # Where Octave will search to find image files. |
827 | 373 imagedir = @imagedir@ |
685 | 374 |
5 | 375 # The type of computer we are running on. |
3136 | 376 canonical_host_type = @canonical_host_type@ |
5 | 377 |
4443 | 378 # Where Octave will look for startup files |
379 startupfiledir = ${fcnfiledir}/startup | |
380 localstartupfiledir = ${localfcnfiledir}/startup | |
381 | |
6028 | 382 # LD_LIBRARY_PATH, DYLD_LIBRARY_PATH, PATH, ... |
383 library_path_var = @library_path_var@ | |
384 | |
4199 | 385 NO_OCT_FILE_STRIP = @NO_OCT_FILE_STRIP@ |
386 | |
5 | 387 # The following pattern rules and the substitution functions require |
388 # GNU make. If you don't have it, get it! | |
389 | |
7063 | 390 # How to make .o files: |
5 | 391 |
7063 | 392 %.o : %.f |
393 $(FC) -c $(ALL_FFLAGS) -o $@ $< | |
5 | 394 |
1984 | 395 %.o : %.c |
3615 | 396 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< -o $@ |
5 | 397 |
1984 | 398 %.o : %.cc |
3615 | 399 $(CXX) -c $(CPPFLAGS) $(ALL_CXXFLAGS) $< -o $@ |
308 | 400 |
7063 | 401 pic/%.o : %.f |
402 $(FC) -c $(FPICFLAG) $(ALL_FFLAGS) $< -o $@ | |
403 | |
1984 | 404 pic/%.o : %.c |
405 $(CC) -c $(CPPFLAGS) $(CPICFLAG) $(ALL_CFLAGS) $< -o $@ | |
406 | |
407 pic/%.o : %.cc | |
408 $(CXX) -c $(CPPFLAGS) $(CXXPICFLAG) $(ALL_CXXFLAGS) $< -o $@ | |
409 | |
308 | 410 # Here is a rule for generating dependencies for .cc files: |
411 | |
1984 | 412 %.d : %.cc |
518 | 413 @echo making $@ from $< |
414 @rm -f $@ | |
3775 | 415 @$(CXX) $(DEPEND_FLAGS) $(CPPFLAGS) $(ALL_CXXFLAGS) $< | \ |
4084 | 416 $(SED) \ |
3775 | 417 $(DEPEND_EXTRA_SED_PATTERN) \ |
418 -e 's,^[^:]*/\(.*\.o\):,\1:,' \ | |
4050 | 419 -e 's,$*\.o,pic/& & $*.df $@,g' > $@-t |
4014 | 420 @mv $@-t $@ |
308 | 421 |
422 # And one for .c files.too: | |
423 | |
1984 | 424 %.d : %.c |
518 | 425 @echo making $@ from $< |
426 @rm -f $@ | |
3775 | 427 @$(CC) $(DEPEND_FLAGS) $(CPPFLAGS) $(ALL_CFLAGS) $< | \ |
4084 | 428 $(SED) \ |
3775 | 429 $(DEPEND_EXTRA_SED_PATTERN) \ |
430 -e 's,^[^:]*/\(.*\.o\):,\1:,' \ | |
4014 | 431 -e 's,$*\.o,pic/& & $@,g' > $@-t |
432 @mv $@-t $@ | |
1166 | 433 |
1685 | 434 define do-subdir-for-command |
4414 | 435 echo making $@ in $d; $(MAKE) -C $d $@; |
1166 | 436 endef |
1685 | 437 |
438 define subdir-for-command | |
439 $(foreach d, $(SUBDIRS), $(do-subdir-for-command)) | |
440 endef | |
2157 | 441 |
6152 | 442 define simple-move-if-change-rule |
443 if [ -s $@-t ]; then \ | |
444 $(top_srcdir)/move-if-change $@-t $@; \ | |
445 else \ | |
446 echo "$@-t is empty!" 1>&2; \ | |
447 rm -f $@-t; \ | |
448 exit 1; \ | |
449 fi | |
450 endef | |
451 | |
452 define builddir-move-if-change-rule | |
453 if [ -s $(@F)-t ]; then \ | |
454 $(top_srcdir)/move-if-change $(@F)-t $(@F); \ | |
455 else \ | |
456 echo "$(@F)-t is empty!" 1>&2; \ | |
457 rm -f $(@F)-t; \ | |
458 exit 1; \ | |
459 fi | |
460 endef | |
461 | |
2862 | 462 # Yes, the second sed command near the end is needed, to avoid limits |
463 # in command lengths for some versions of sed. UGLY_DEFS is often | |
464 # quite large, so it makes sense to split this command there. | |
465 | |
2157 | 466 define do-subst-config-vals |
2223 | 467 echo "making $@ from $<" |
4084 | 468 $(SED) < $< \ |
5451 | 469 -e "s|%NO_OCT_FILE_STRIP%|${NO_OCT_FILE_STRIP}|" \ |
470 -e "s|%OCTAVE_BINDIR%|\"${bindir}\"|" \ | |
471 -e "s|%OCTAVE_CONF_ALL_CFLAGS%|\"${ALL_CFLAGS}\"|" \ | |
472 -e "s|%OCTAVE_CONF_ALL_CXXFLAGS%|\"${ALL_CXXFLAGS}\"|" \ | |
473 -e "s|%OCTAVE_CONF_ALL_FFLAGS%|\"${ALL_FFLAGS}\"|" \ | |
474 -e "s|%OCTAVE_CONF_ALL_LDFLAGS%|\"${ALL_LDFLAGS}\"|" \ | |
475 -e "s|%OCTAVE_CONF_AR%|\"${AR}\"|" \ | |
476 -e "s|%OCTAVE_CONF_ARFLAGS%|\"${ARFLAGS}\"|" \ | |
477 -e "s|%OCTAVE_CONF_BLAS_LIBS%|\"${BLAS_LIBS}\"|" \ | |
478 -e "s|%OCTAVE_CONF_CANONICAL_HOST_TYPE%|\"${canonical_host_type}\"|" \ | |
8772
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
479 -e "s|%OCTAVE_CONF_CARBON_LIBS%|\"${CARBON_LIBS}\"|" \ |
5451 | 480 -e "s|%OCTAVE_CONF_CC%|\"${CC}\"|" \ |
481 -e "s|%OCTAVE_CONF_CC_VERSION%|\"${CC_VERSION}\"|" \ | |
482 -e "s|%OCTAVE_CONF_CFLAGS%|\"${CFLAGS}\"|" \ | |
483 -e "s|%OCTAVE_CONF_CPICFLAG%|\"${CPICFLAG}\"|" \ | |
484 -e "s|%OCTAVE_CONF_CPPFLAGS%|\"${CPPFLAGS}\"|" \ | |
6043 | 485 -e "s|%OCTAVE_CONF_CURL_LIBS%|\"${CURL_LIBS}\"|" \ |
5451 | 486 -e "s|%OCTAVE_CONF_CXX%|\"${CXX}\"|" \ |
487 -e "s|%OCTAVE_CONF_CXXCPP%|\"${CXXCPP}\"|" \ | |
488 -e "s|%OCTAVE_CONF_CXXFLAGS%|\"${CXXFLAGS}\"|" \ | |
489 -e "s|%OCTAVE_CONF_CXXPICFLAG%|\"${CXXPICFLAG}\"|" \ | |
490 -e "s|%OCTAVE_CONF_CXX_VERSION%|\"${CXX_VERSION}\"|" \ | |
491 -e "s|%OCTAVE_CONF_DEFAULT_PAGER%|\"${DEFAULT_PAGER}\"|" \ | |
492 -e "s|%OCTAVE_CONF_DEPEND_FLAGS%|\"${DEPEND_FLAGS}\"|" \ | |
493 -e "s|%OCTAVE_CONF_DEPEND_EXTRA_SED_PATTERN%|\"${DEPEND_EXTRA_SED_PATTERN}\"|" \ | |
494 -e "s|%OCTAVE_CONF_DL_LD%|\"${DL_LD}\"|" \ | |
495 -e "s|%OCTAVE_CONF_DL_LDFLAGS%|\"${DL_LDFLAGS}\"|" \ | |
496 -e "s|%OCTAVE_CONF_EXEEXT%|\"${EXEEXT}\"|" \ | |
497 -e "s|%OCTAVE_CONF_F77%|\"${F77}\"|" \ | |
5498 | 498 -e "s|%OCTAVE_CONF_F77_FLOAT_STORE_FLAG%|\"${F77_FLOAT_STORE_FLAG}\"|" \ |
5451 | 499 -e "s|%OCTAVE_CONF_FC%|\"${FC}\"|" \ |
500 -e "s|%OCTAVE_CONF_FFLAGS%|\"${FFLAGS}\"|" \ | |
501 -e "s|%OCTAVE_CONF_FFTW_LIBS%|\"${FFTW_LIBS}\"|" \ | |
502 -e "s|%OCTAVE_CONF_FLIBS%|\"${FLIBS}\"|" \ | |
503 -e "s|%OCTAVE_CONF_FPICFLAG%|\"${FPICFLAG}\"|" \ | |
504 -e "s|%OCTAVE_CONF_GLPK_LIBS%|\"${GLPK_LIBS}\"|" \ | |
7361 | 505 -e "s|%OCTAVE_CONF_GNUPLOT%|\"${GNUPLOT}\"|" \ |
5451 | 506 -e "s|%OCTAVE_CONF_INCFLAGS%|\"${INCFLAGS}\"|" \ |
6311 | 507 -e "s|%OCTAVE_CONF_INCLUDEDIR%|\"${includedir}\"|" \ |
5451 | 508 -e "s|%OCTAVE_CONF_LD_CXX%|\"${LD_CXX}\"|" \ |
509 -e "s|%OCTAVE_CONF_LDFLAGS%|\"${LDFLAGS}\"|" \ | |
510 -e "s|%OCTAVE_CONF_LD_STATIC_FLAG%|\"${LD_STATIC_FLAG}\"|" \ | |
511 -e "s|%OCTAVE_CONF_LEX%|\"${LEX}\"|" \ | |
512 -e "s|%OCTAVE_CONF_LEXLIB%|\"${LEXLIB}\"|" \ | |
513 -e "s|%OCTAVE_CONF_LFLAGS%|\"${LFLAGS}\"|" \ | |
514 -e "s|%OCTAVE_CONF_LIBCRUFT%|\"${LIBCRUFT}\"|" \ | |
6710 | 515 -e "s|%OCTAVE_CONF_LIBDIR%|\"${libdir}\"|" \ |
5451 | 516 -e "s|%OCTAVE_CONF_LIBEXT%|\"${LIBEXT}\"|" \ |
517 -e "s|%OCTAVE_CONF_LIBFLAGS%|\"${LIBFLAGS}\"|" \ | |
518 -e "s|%OCTAVE_CONF_LIBGLOB%|\"${LIBGLOB}\"|" \ | |
519 -e "s|%OCTAVE_CONF_LIBOCTAVE%|\"${LIBOCTAVE}\"|" \ | |
520 -e "s|%OCTAVE_CONF_LIBOCTINTERP%|\"${LIBOCTINTERP}\"|" \ | |
521 -e "s|%OCTAVE_CONF_LIBREADLINE%|\"${LIBREADLINE}\"|" \ | |
522 -e "s|%OCTAVE_CONF_LIBS%|\"${LIBS}\"|" \ | |
523 -e "s|%OCTAVE_CONF_LN_S%|\"${LN_S}\"|" \ | |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
524 -e "s|%OCTAVE_CONF_MAGICK_INCFLAGS%|\"${MAGICK_INCFLAGS}\"|" \ |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
525 -e "s|%OCTAVE_CONF_MAGICK_LIBS%|\"${MAGICK_LIBS}\"|" \ |
6682 | 526 -e 's|%OCTAVE_CONF_MKOCTFILE_DL_LDFLAGS%|\"@MKOCTFILE_DL_LDFLAGS@\"|' \ |
6311 | 527 -e "s|%OCTAVE_CONF_OCTINCLUDEDIR%|\"${octincludedir}\"|" \ |
528 -e "s|%OCTAVE_CONF_OCTLIBDIR%|\"${octlibdir}\"|" \ | |
529 -e "s|%OCTAVE_CONF_PREFIX%|\"${prefix}\"|" \ | |
5451 | 530 -e "s|%OCTAVE_CONF_RANLIB%|\"${RANLIB}\"|" \ |
531 -e "s|%OCTAVE_CONF_RDYNAMIC_FLAG%|\"${RDYNAMIC_FLAG}\"|" \ | |
532 -e "s|%OCTAVE_CONF_RLD_FLAG%|\"${RLD_FLAG}\"|" \ | |
533 -e "s|%OCTAVE_CONF_SED%|\"${SED}\"|" \ | |
534 -e "s|%OCTAVE_CONF_SHARED_LIBS%|\"${SHARED_LIBS}\"|" \ | |
535 -e "s|%OCTAVE_CONF_SHLEXT%|\"${SHLEXT}\"|" \ | |
536 -e "s|%OCTAVE_CONF_SHLLINKEXT%|\"${SHLLINKEXT}\"|" \ | |
537 -e "s|%OCTAVE_CONF_SHLEXT_VER%|\"${SHLEXT_VER}\"|" \ | |
538 -e "s|%OCTAVE_CONF_SH_LD%|\"${SH_LD}\"|" \ | |
539 -e "s|%OCTAVE_CONF_SH_LDFLAGS%|\"${SH_LDFLAGS}\"|" \ | |
540 -e "s|%OCTAVE_CONF_SONAME_FLAGS%|\"${SONAME_FLAGS}\"|" \ | |
541 -e "s|%OCTAVE_CONF_STATIC_LIBS%|\"${STATIC_LIBS}\"|" \ | |
542 -e "s|%OCTAVE_CONF_UGLY_DEFS%|\"${UGLY_DEFS}\"|" \ | |
543 -e "s|%OCTAVE_CONF_USE_64_BIT_IDX_T%|\"${USE_64_BIT_IDX_T}\"|" \ | |
544 -e "s|%OCTAVE_CONF_VERSION%|\"${version}\"|" \ | |
545 -e "s|%OCTAVE_CONF_ENABLE_DYNAMIC_LINKING%|\"${ENABLE_DYNAMIC_LINKING}\"|" \ | |
8772
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
546 -e "s|%OCTAVE_CONF_X11_INCFLAGS%|\"${X11_INCFLAGS}\"|" \ |
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
547 -e "s|%OCTAVE_CONF_X11_LIBS%|\"${X11_LIBS}\"|" \ |
5451 | 548 -e "s|%OCTAVE_CONF_XTRA_CFLAGS%|\"${XTRA_CFLAGS}\"|" \ |
549 -e "s|%OCTAVE_CONF_XTRA_CXXFLAGS%|\"${XTRA_CXXFLAGS}\"|" \ | |
550 -e "s|%OCTAVE_CONF_YACC%|\"${YACC}\"|" \ | |
551 -e "s|%OCTAVE_CONF_YFLAGS%|\"${YFLAGS}\"|" \ | |
552 -e "s|%OCTAVE_CONF_config_opts%|\"${config_opts}\"|" | \ | |
553 $(SED) -e "s|%OCTAVE_CONF_DEFS%|\"${UGLY_DEFS}\"|" > $@-t | |
6152 | 554 $(simple-move-if-change-rule) |
2157 | 555 endef |
556 | |
557 define do-subst-default-vals | |
2223 | 558 echo "making $@ from $<" |
4084 | 559 $(SED) < $< > $@-t \ |
5451 | 560 -e "s|%OCTAVE_ARCHLIBDIR%|\"${archlibdir}\"|" \ |
561 -e "s|%OCTAVE_BINDIR%|\"${bindir}\"|" \ | |
562 -e "s|%OCTAVE_CANONICAL_HOST_TYPE%|\"${canonical_host_type}\"|" \ | |
563 -e "s|%OCTAVE_DATADIR%|\"${datadir}\"|" \ | |
5847 | 564 -e "s|%OCTAVE_DATAROOTDIR%|\"${datarootdir}\"|" \ |
5451 | 565 -e "s|%OCTAVE_DEFAULT_PAGER%|\"${DEFAULT_PAGER}\"|" \ |
8865
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8850
diff
changeset
|
566 -e "s|%OCTAVE_DOC_CACHE_FILE%|\"${doc_cache_file}\"|" \ |
5451 | 567 -e "s|%OCTAVE_EXEC_PREFIX%|\"${exec_prefix}\"|" \ |
568 -e "s|%OCTAVE_FCNFILEDIR%|\"${fcnfiledir}\"|" \ | |
569 -e "s|%OCTAVE_IMAGEDIR%|\"${imagedir}\"|" \ | |
570 -e "s|%OCTAVE_INCLUDEDIR%|\"${includedir}\"|" \ | |
571 -e "s|%OCTAVE_INFODIR%|\"${infodir}\"|" \ | |
572 -e "s|%OCTAVE_INFOFILE%|\"${infofile}\"|" \ | |
573 -e "s|%OCTAVE_LIBDIR%|\"${libdir}\"|" \ | |
574 -e "s|%OCTAVE_LIBEXECDIR%|\"${libexecdir}\"|" \ | |
575 -e "s|%OCTAVE_LOCALAPIFCNFILEDIR%|\"${localapifcnfiledir}\"|" \ | |
576 -e "s|%OCTAVE_LOCALAPIOCTFILEDIR%|\"${localapioctfiledir}\"|" \ | |
577 -e "s|%OCTAVE_LOCALARCHLIBDIR%|\"${localarchlibdir}\"|" \ | |
578 -e "s|%OCTAVE_LOCALFCNFILEDIR%|\"${localfcnfiledir}\"|" \ | |
579 -e "s|%OCTAVE_LOCALOCTFILEDIR%|\"${localoctfiledir}\"|" \ | |
580 -e "s|%OCTAVE_LOCALSTARTUPFILEDIR%|\"${localstartupfiledir}\"|" \ | |
5909 | 581 -e "s|%OCTAVE_LOCALAPIARCHLIBDIR%|\"${localapiarchlibdir}\"|" \ |
5451 | 582 -e "s|%OCTAVE_LOCALVERARCHLIBDIR%|\"${localverarchlibdir}\"|" \ |
583 -e "s|%OCTAVE_LOCALVERFCNFILEDIR%|\"${localverfcnfiledir}\"|" \ | |
584 -e "s|%OCTAVE_LOCALVEROCTFILEDIR%|\"${localveroctfiledir}\"|" \ | |
585 -e "s|%OCTAVE_MAN1DIR%|\"${man1dir}\"|" \ | |
586 -e "s|%OCTAVE_MAN1EXT%|\"${man1ext}\"|" \ | |
587 -e "s|%OCTAVE_MANDIR%|\"${mandir}\"|" \ | |
588 -e "s|%OCTAVE_OCTFILEDIR%|\"${octfiledir}\"|" \ | |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
589 -e "s|%OCTAVE_OCTETCDIR%|\"${octetcdir}\"|" \ |
5451 | 590 -e "s|%OCTAVE_OCTINCLUDEDIR%|\"${octincludedir}\"|" \ |
591 -e "s|%OCTAVE_OCTLIBDIR%|\"${octlibdir}\"|" \ | |
592 -e "s|%OCTAVE_STARTUPFILEDIR%|\"${startupfiledir}\"|" \ | |
593 -e "s|%OCTAVE_PREFIX%|\"${prefix}\"|" \ | |
5658 | 594 -e "s|%OCTAVE_API_VERSION%|\"${api_version}\"|" \ |
595 -e "s|%OCTAVE_RELEASE%|\"${OCTAVE_RELEASE}\"|" \ | |
5451 | 596 -e "s|%OCTAVE_VERSION%|\"${version}\"|" |
6152 | 597 $(simple-move-if-change-rule) |
2157 | 598 endef |
4227 | 599 |
5708 | 600 define do-subst-texinfo-vals |
601 echo "making $@ from $<" | |
602 $(SED) < $< \ | |
6583 | 603 -e "s|%abs_top_srcdir%|${abs_top_srcdir}|" \ |
6577 | 604 -e "s|%top_srcdir%|${top_srcdir}|" \ |
5708 | 605 -e "s|%OCTAVE_HOME%|${prefix}|" \ |
606 -e "s|%OCTAVE_VERSION%|${version}|" \ | |
607 -e "s|%TEXINFO_COLAMD%|${TEXINFO_COLAMD}|" \ | |
608 -e "s|%TEXINFO_CHOLMOD%|${TEXINFO_CHOLMOD}|" \ | |
6855 | 609 -e "s|%TEXINFO_UMFPACK%|${TEXINFO_UMFPACK}|" \ |
610 -e "s|%TEXINFO_QHULL%|${TEXINFO_QHULL}|" | \ | |
5942 | 611 $(SED) -e "s|%OCTAVE_CONF_DEFS%|\"${UGLY_DEFS}\"|" > $@-t |
6152 | 612 $(simple-move-if-change-rule) |
5708 | 613 endef |
614 | |
5776 | 615 define do-subst-script-vals |
616 echo "making $@ from $<" | |
617 $(SED) < $< \ | |
7244 | 618 -e "s|%AWK%|${AWK}|g" \ |
619 -e "s|%FIND%|${FIND}|g" \ | |
8005
c0d7eb662384
run-octave.in: use sed to append : to path elements
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
620 -e "s|%SED%|${SED}|g" \ |
6028 | 621 -e "s|%library_path_var%|${library_path_var}|g" \ |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9078
diff
changeset
|
622 -e "s|%liboctinterp%|${SHLPRE}octinterp.${SHLEXT}|g" \ |
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9078
diff
changeset
|
623 -e "s|%liboctave%|${SHLPRE}octave.${SHLEXT}|g" \ |
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9078
diff
changeset
|
624 -e "s|%libcruft%|${SHLPRE}cruft.${SHLEXT}|g" \ |
5776 | 625 -e "s|%srcdir%|${srcdir}|" \ |
626 -e "s|%top_srcdir%|${top_srcdir}|" \ | |
5793 | 627 -e "s|%abs_top_srcdir%|${abs_top_srcdir}|" \ |
5776 | 628 -e "s|%builddir%|$(shell pwd)|" > $@-t |
6152 | 629 $(simple-move-if-change-rule) |
5776 | 630 endef |
631 | |
6102 | 632 define do-subst-f77-mangling |
633 echo "making $@ from $<" | |
634 $(SED) < $< \ | |
635 -e "s|%F77_TOLOWER%|${F77_TOLOWER}|g" \ | |
636 -e "s|%F77_APPEND_UNDERSCORE%|${F77_APPEND_UNDERSCORE}|" \ | |
637 -e "s|%F77_APPEND_EXTRA_UNDERSCORE%|${F77_APPEND_EXTRA_UNDERSCORE}|" > $@-t | |
6152 | 638 $(simple-move-if-change-rule) |
6102 | 639 endef |
640 | |
5597 | 641 define do-mkpkgadd |
642 $(top_srcdir)/mkpkgadd $(srcdir) > PKG_ADD.t | |
643 if [ -n "`cat PKG_ADD.t`" ]; then \ | |
644 mv PKG_ADD.t PKG_ADD ; \ | |
645 else \ | |
646 rm -f PKG_ADD.t ; \ | |
647 fi | |
648 endef | |
649 | |
4227 | 650 define do-script-install |
4413 | 651 $(top_srcdir)/mkinstalldirs \ |
652 $(addprefix $(DESTDIR), $(fcnfiledir)/$(script_sub_dir)) | |
6279 | 653 for f in $(FCN_FILES); do \ |
654 fbase=`basename $$f`; \ | |
655 rm -f $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/$$fbase; \ | |
656 $(INSTALL_DATA) $$f $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/$$fbase; \ | |
4227 | 657 done |
4413 | 658 $(top_srcdir)/mkpkgadd $(DESTDIR)$(fcnfiledir)/$(script_sub_dir) > $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/PKG_ADD.t |
659 if [ -n "`cat $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/PKG_ADD.t`" ]; then \ | |
9078
e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
9077
diff
changeset
|
660 $(INSTALL_DATA) $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/PKG_ADD.t $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/PKG_ADD ; \ |
4227 | 661 else \ |
4413 | 662 rm -f $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/PKG_ADD.t ; \ |
4227 | 663 fi |
664 endef | |
665 | |
666 define do-script-uninstall | |
667 for f in $(FCN_FILES_NO_DIR); \ | |
4413 | 668 do rm -f $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/$$f; \ |
4227 | 669 done |
6366 | 670 rm -f $(DESTDIR)$(fcnfiledir)/$(script_sub_dir)/PKG_ADD |
6654 | 671 -rmdir $(addprefix $(DESTDIR), $(fcnfiledir)/$(script_sub_dir)) |
4227 | 672 endef |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
673 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
674 define do-check-m-sources |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
675 for f in $(notdir $(wildcard $(srcdir)/*.m)); do \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
676 found=false; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
677 for m in $(SOURCES); do \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
678 if [ "$$f" = "$$m" ]; then \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
679 found=true; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
680 break; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
681 fi; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
682 done; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
683 if $$found; then \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
684 true; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
685 else \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
686 echo "$(script_sub_dir)/$$f: not listed in SOURCES"; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
687 fi; \ |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
688 done |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7361
diff
changeset
|
689 endef |