home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / xap / xfm / xfm-1.000 / xfm-1 / xfm-1.3.2 / Imake.options < prev    next >
Encoding:
Text File  |  1995-03-31  |  1.6 KB  |  64 lines

  1.  
  2. /* Global settings for xfm Imakefiles, to configure xfm according to your
  3.    preferences and system.
  4.    Mar 22 1995 Albert Graef */
  5.  
  6. /* Destination directories. ***********************************************/
  7.  
  8. /* Where xfm config files and pixmaps go. */
  9. XFMLIBDIR = $(LIBDIR)/xfm
  10.  
  11. /* Magic headers. *********************************************************/
  12.  
  13. /* Comment out the following if you do not want to use magic headers. Note:
  14.    the MAGIC_HEADERS symbol also controls whether the standard xfmrc file or
  15.    xfmrc.nomagic is installed on your system. */
  16.  
  17. #define MAGIC_HEADERS
  18.  
  19. /* Libraries. *************************************************************/
  20.  
  21. /* Comment out the following if you do not have the Xpm library. Otherwise,
  22.    set XPMINCDIR and XPMLIBDIR as required by your system if libXpm is not
  23.    on the standard path. E.g.:
  24.    XPMINCDIR = -I/usr/local/X11/include
  25.    XPMLIBDIR = -L/usr/local/X11/lib
  26. */
  27.  
  28. #define XPM
  29.  
  30. XPMINCDIR =
  31. XPMLIBDIR =
  32.  
  33. /* Uncomment the following (and set XAWINCDIR, XAWLIBDIR accordingly) if
  34.    you want to use Xaw3d instead of Xaw. Note: the use of this option also
  35.    causes some Xaw3d-specific resources to be included in the appdefaults
  36.    file. */
  37.  
  38. /* #define XAW3D */
  39.  
  40. XAWINCDIR =
  41. XAWLIBDIR =
  42.  
  43. /* Compilation options. ***************************************************/
  44.  
  45. /* Uncomment the following if your system has GCC but it is not used by
  46.    default */
  47.  
  48. /* #define USE_GCC */
  49.  
  50. #ifdef USE_GCC
  51.  
  52. CC=gcc
  53. CCOPTIONS = -Wall -Wno-parentheses
  54. CDEBUGFLAGS = -O
  55.  
  56. #else
  57.  
  58. /* The following has been suggested for HP-UX: */
  59. #ifdef HPArchitecture
  60. CCOPTIONS = -Aa -D_HPUX_SOURCE
  61. #endif
  62.  
  63. #endif
  64.