home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume19 / xmail / part03 / Imakefile next >
Makefile  |  1993-04-28  |  3KB  |  71 lines

  1. /* */#
  2. /* */# @(#)Imakefile - for xmail version 1 patchlevel 5
  3. /* */#
  4. /* */# Uncomment USE_DIRENT if readdir() uses <dirent.h> instead of <sys/dir.h>
  5. /* */#
  6.      USE_DIRENT = -DUSE_DIRENT
  7. /* */#
  8. /* */# Uncomment X_FACE and COMPFACE if you have the compface library installed
  9. /* */# and you want xmail to automatically display the X-Face: header, if found
  10. /* */# in a message.
  11. /* */#
  12. /* */#         X_FACE = -DX_FACE
  13. /* */#       COMPFACE = -lcompface
  14. /* */#
  15. /* */# Uncomment XPM if you have the Xpm version 3 library and want color icons
  16. /* */#
  17. /* */#            XPM = -DXPM
  18. /* */#         LIBXPM = -lXpm
  19. /* */#
  20. /* */# Uncomment LPT if you require att environment support for pseudo ports.
  21. /* */#
  22. /* */#            LPT = -lpt
  23. /* */#
  24. /* */# Uncomment REGEXP if your system supplies the regexp.h include file.
  25. /* */# Otherwise, xmail will use the regex procedures re_comp and re_exec.
  26. /* */#
  27. /* */#   REGEXP = -DUSE_REGEXP
  28. /* */#
  29. /* */# Define MAILBOX_DIRECTORY if your mail spool is located in other than the
  30. /* */# default /usr/spool/mail.  (If not specified, the default will be used.)
  31. /* */#
  32. /* */#    MAILBOX_DIR = -DMAILBOX_DIRECTORY=\"/usr/spool/mail\"
  33. /* */#
  34. /* */# Define DEFAULT_VISUAL if your copy of vi lies in some place other than
  35. /* */# /usr/ucb.  (If not specified, /usr/ucb/vi will be the default editor.)
  36. /* */#
  37. /* */#     DEF_VISUAL = -DDEFAULT_VISUAL=\"/usr/ucb/vi\"
  38. /* */#
  39. /* */# Define DEFAULT_MAILER if your mail program is not the standard
  40. /* */# /usr/ucb/Mail.  CAUTION - Operation is NOT guaranteed with other mailers.
  41. /* */#
  42. /* */#     DEF_MAILER = -DDEFAULT_MAILER=\"/usr/ucb/Mail\"
  43. /* */#
  44. /* */# Define SIGACTION if your system utilizes the sigaction() call rather
  45. /* */# than the sigvec() call (true on most SYSV and POSIX compilant systems)
  46. /* */# You may also need to add the following BSD define (true on SGI systems)
  47. /* */#
  48. /* */#         SIGDEF = -D_BSD_SIGNALS
  49. /* */#
  50. /* */#         SIGACT = -DSIGACTION
  51. /* */#
  52.  
  53.   XMAIL_DEFINES = $(MAILBOX_DIR) $(DEF_VISUAL) $(DEF_MAILER) $(SIGACT) $(SIGDEF)
  54.         DEFINES = $(USE_DIRENT) $(X_FACE) $(XPM) $(REGEXP) $(XMAIL_DEFINES)
  55.  
  56.         DEPLIBS = $(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB)
  57. LOCAL_LIBRARIES = $(LIBXPM) $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) $(COMPFACE) $(LPT)
  58.  
  59.            SRCS = Mailwatch.c HelpText.c actions.c callMail.c callbacks.c \
  60.           confirm.c directory.c environs.c handler.c mail.c parser.c \
  61.           utils.c windows.c xmail.c
  62.  
  63.            OBJS = Mailwatch.o HelpText.o actions.o callMail.o callbacks.o \
  64.           confirm.o directory.o environs.o handler.o mail.o parser.o \
  65.           utils.o windows.o xmail.o
  66.  
  67. ComplexProgramTarget(xmail)
  68.  
  69. InstallAppDefaults(XMail)
  70.  
  71.