2163
|
1 // oct-conf.h.in |
|
2 /* |
|
3 |
|
4 Copyright (C) 1996 John W. Eaton |
|
5 |
|
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 2, or (at your option) any |
|
11 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, write to the Free |
|
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
21 |
|
22 */ |
|
23 |
|
24 #if !defined (octave_conf_h) |
|
25 #define octave_conf_h 1 |
|
26 |
|
27 #ifndef config_opts |
|
28 #define config_opts %config_opts% |
|
29 #endif |
|
30 |
|
31 #ifndef TARGET_HOST_TYPE |
|
32 #define TARGET_HOST_TYPE %TARGET_HOST_TYPE% |
|
33 #endif |
|
34 |
|
35 #ifndef F77 |
|
36 #define F77 %F77% |
|
37 #endif |
|
38 |
|
39 #ifndef FFLAGS |
|
40 #define FFLAGS %FFLAGS% |
|
41 #endif |
|
42 |
|
43 #ifndef FPICFLAG |
|
44 #define FPICFLAG %FPICFLAG% |
|
45 #endif |
|
46 |
|
47 #ifndef F2C |
|
48 #define F2C %F2C% |
|
49 #endif |
|
50 |
|
51 #ifndef F2CFLAGS |
|
52 #define F2CFLAGS %F2CFLAGS% |
|
53 #endif |
|
54 |
|
55 #ifndef FLIBS |
|
56 #define FLIBS %FLIBS% |
|
57 #endif |
|
58 |
|
59 #ifndef CPPFLAGS |
|
60 #define CPPFLAGS %CPPFLAGS% |
|
61 #endif |
|
62 |
|
63 #ifndef INCFLAGS |
|
64 #define INCFLAGS %INCFLAGS% |
|
65 #endif |
|
66 |
|
67 #ifndef CC |
|
68 #define CC %CC% |
|
69 #endif |
|
70 |
|
71 #ifndef CC_VERSION |
|
72 #define CC_VERSION %CC_VERSION% |
|
73 #endif |
|
74 |
|
75 #ifndef CFLAGS |
|
76 #define CFLAGS %CFLAGS% |
|
77 #endif |
|
78 |
|
79 #ifndef CPICFLAG |
|
80 #define CPICFLAG %CPICFLAG% |
|
81 #endif |
|
82 |
|
83 #ifndef CXX |
|
84 #define CXX %CXX% |
|
85 #endif |
|
86 |
|
87 #ifndef CXX_VERSION |
|
88 #define CXX_VERSION %CXX_VERSION% |
|
89 #endif |
|
90 |
|
91 #ifndef CXXFLAGS |
|
92 #define CXXFLAGS %BUG_CXXFLAGS% |
|
93 #endif |
|
94 |
|
95 #ifndef CXXPICFLAG |
|
96 #define CXXPICFLAG %CXXPICFLAG% |
|
97 #endif |
|
98 |
|
99 #ifndef LDFLAGS |
|
100 #define LDFLAGS %LDFLAGS% |
|
101 #endif |
|
102 |
|
103 #ifndef LIBFLAGS |
|
104 #define LIBFLAGS %LIBFLAGS% |
|
105 #endif |
|
106 |
|
107 #ifndef RLD_FLAG |
|
108 #define RLD_FLAG %RLD_FLAG% |
|
109 #endif |
|
110 |
|
111 #ifndef CXXLIBS |
|
112 #define CXXLIBS %CXXLIBS% |
|
113 #endif |
|
114 |
|
115 #ifndef TERMLIBS |
|
116 #define TERMLIBS %TERMLIBS% |
|
117 #endif |
|
118 |
|
119 #ifndef LIBS |
|
120 #define LIBS %LIBS% |
|
121 #endif |
|
122 |
|
123 #ifndef LEXLIB |
|
124 #define LEXLIB %LEXLIB% |
|
125 #endif |
|
126 |
|
127 #ifndef LIBPLPLOT |
|
128 #define LIBPLPLOT %LIBPLPLOT% |
|
129 #endif |
|
130 |
|
131 #ifndef LIBDLFCN |
|
132 #define LIBDLFCN %LIBDLFCN% |
|
133 #endif |
|
134 |
|
135 #ifndef DEFS |
|
136 #define DEFS %DEFS% |
|
137 #endif |
|
138 |
|
139 #endif |
|
140 |
|
141 /* |
|
142 ;;; Local Variables: *** |
|
143 ;;; mode: C++ *** |
|
144 ;;; page-delimiter: "^/\\*" *** |
|
145 ;;; End: *** |
|
146 */ |