home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / src / defaults.h.in < prev    next >
Text File  |  1996-09-28  |  2KB  |  115 lines

  1. // defaults.h                                               -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 1992, 1993, 1994, 1995 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, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23.  
  24. #if !defined (octave_defaults_h)
  25. #define octave_defaults_h 1
  26.  
  27. #ifndef DEFAULT_PAGER
  28. #define DEFAULT_PAGER %DEFAULT_PAGER%
  29. #endif
  30.  
  31. #ifndef OCTAVE_PREFIX
  32. #define OCTAVE_PREFIX %OCTAVE_PREFIX%
  33. #endif
  34.  
  35. #ifndef OCTAVE_EXEC_PREFIX
  36. #define OCTAVE_EXEC_PREFIX %OCTAVE_EXEC_PREFIX%
  37. #endif
  38.  
  39. #ifndef OCTAVE_DATADIR
  40. #define OCTAVE_DATADIR %OCTAVE_DATADIR%
  41. #endif
  42.  
  43. #ifndef OCTAVE_LIBDIR
  44. #define OCTAVE_LIBDIR %OCTAVE_LIBDIR%
  45. #endif
  46.  
  47. #ifndef OCTAVE_BINDIR
  48. #define OCTAVE_BINDIR %OCTAVE_BINDIR%
  49. #endif
  50.  
  51. #ifndef OCTAVE_INFODIR
  52. #define OCTAVE_INFODIR %OCTAVE_INFODIR%
  53. #endif
  54.  
  55. #ifndef OCTAVE_FCNFILEDIR
  56. #define OCTAVE_FCNFILEDIR %OCTAVE_FCNFILEDIR%
  57. #endif
  58.  
  59. #ifndef OCTAVE_STARTUPFILEDIR
  60. #define OCTAVE_STARTUPFILEDIR OCTAVE_FCNFILEDIR "/startup"
  61. #endif
  62.  
  63. #ifndef OCTAVE_LOCALFCNFILEPATH
  64. #define OCTAVE_LOCALFCNFILEPATH %OCTAVE_LOCALFCNFILEPATH%
  65. #endif
  66.  
  67. #ifndef OCTAVE_ARCHLIBDIR
  68. #define OCTAVE_ARCHLIBDIR %OCTAVE_ARCHLIBDIR%
  69. #endif
  70.  
  71. #ifndef OCTAVE_OCTFILEDIR
  72. #define OCTAVE_OCTFILEDIR %OCTAVE_OCTFILEDIR%
  73. #endif
  74.  
  75. #ifndef OCTAVE_LOCALOCTFILEPATH
  76. #define OCTAVE_LOCALOCTFILEPATH %OCTAVE_LOCALOCTFILEPATH%
  77. #endif
  78.  
  79. #ifndef OCTAVE_FCNFILEPATH
  80. #define OCTAVE_FCNFILEPATH %OCTAVE_FCNFILEPATH%
  81. #endif
  82.  
  83. #ifndef OCTAVE_IMAGEPATH
  84. #define OCTAVE_IMAGEPATH %OCTAVE_IMAGEPATH%
  85. #endif
  86.  
  87. #ifndef TARGET_HOST_TYPE
  88. #define TARGET_HOST_TYPE %TARGET_HOST_TYPE%
  89. #endif
  90.  
  91. #ifndef FLIB_LIST
  92. #define FLIB_LIST %FLIB_LIST%
  93. #endif
  94.  
  95. #ifndef FLIB_PATH
  96. #define FLIB_PATH %FLIB_PATH%
  97. #endif
  98.  
  99. #ifndef CXXLIB_LIST
  100. #define CXXLIB_LIST %CXXLIB_LIST%
  101. #endif
  102.  
  103. #ifndef CXXLIB_PATH
  104. #define CXXLIB_PATH %CXXLIB_PATH%
  105. #endif
  106.  
  107. #endif
  108.  
  109. /*
  110. ;;; Local Variables: ***
  111. ;;; mode: C++ ***
  112. ;;; page-delimiter: "^/\\*" ***
  113. ;;; End: ***
  114. */
  115.