home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gwm18a.zip / Make.TEMPLATE < prev    next >
Text File  |  1995-07-03  |  2KB  |  61 lines

  1. # NOTE: A link to this file is kept in the Make/ subdirectory, so that you
  2. # can overwrite your src directory with a new version without losing these
  3. # modifications
  4.  
  5. # the directory where X11 include files can be found (or in a X11 directory
  6. # just underneath). Must not be blank (should be /usr/include on most systems)
  7. # EXTRA_INCLUDES can be set to other -I directives to specifu other paths
  8.  
  9. XDIR    = /usr/include
  10. EXTRA_INCLUDES=
  11.  
  12. # the linker option(s) to specify directories where X librairies stay (BSD)
  13. # must be blank if your linker doesn't have a -L option (SYSV)
  14. # put here where the Xpm library is, if it is not in a standard place
  15.  
  16. XLIBDIR   = -L/usr/lib/X11
  17.  
  18. # the X11 library, and any other useful. Use -l (BSD) or complete pathname
  19. # (e.g. /usr/lib/X11/libX11.a) if your linker doesn't understand "-L" (SYSV)
  20. # you will need to have -lXext -lX11 if you compiled with -DX11R4 or later
  21. # only -lX11 with X11R1 to X11R3
  22.  
  23. LIBS = -lXext -lX11
  24.  
  25. # compilation flags , -O or -g
  26.  
  27. FLAGS    = -O
  28.  
  29. # name (absolute or relative) of the compiler: cc, /bin/cc, 
  30. # gcc -pipe -traditional, ... (use -traditional with gcc)
  31.  
  32. C_COMPILER= cc
  33.  
  34. # various defines: (See INSTALL for list)
  35. # normally, at least -DX11R6 -DSECURE -DSTATS -DUSER_DEBUG
  36. # and OS/platform dependant flags
  37.  
  38. DEFINES = -DX11R6 -DSECURE -DUSER_DEBUG -DUSE_STANDARD_MALLOC
  39.  
  40. # other linker -specific flags
  41.  
  42. LFLAGS =
  43.  
  44. # unix command to apply to executable after link
  45. # set it to ":" if no processing is done (most machines. some must set the stack)
  46.  
  47. POSTPROCESSING = :
  48.  
  49. # directory to copy the executable to on install
  50.  
  51. INSTALL_GWM=/usr/local/bin/gwm
  52.  
  53. # directory to copy be the standard wool files and bitmaps
  54.  
  55. INSTALL_DIR=/usr/local/lib/gwm
  56.  
  57. # path to be appended to: .:$HOME:$HOME/gwm for GWMPATH
  58. # Must be defined, but normally contains only INSTALL_DIR
  59.  
  60. INSTALL_PATH=$(INSTALL_DIR)
  61.