home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2301 / Imakefile < prev    next >
Encoding:
Makefile  |  1990-12-28  |  2.1 KB  |  55 lines

  1. #
  2. # Author: Jason Baietto, jason@ssd.csd.harris.com
  3. # xdiary Copyright 1990 Harris Corporation
  4. #
  5. # Permission to use, copy, modify, and distribute, this software and its
  6. # documentation for any purpose is hereby granted without fee, provided that
  7. # the above copyright notice appear in all copies and that both that
  8. # copyright notice and this permission notice appear in supporting
  9. # documentation, and that the name of the copyright holder be used in
  10. # advertising or publicity pertaining to distribution of the software with
  11. # specific, written prior permission, and that no fee is charged for further
  12. # distribution of this software, or any modifications thereof.  The copyright
  13. # holder makes no representations about the suitability of this software for
  14. # any purpose.  It is provided "as is" without express or implied warranty.
  15. #
  16. # THE COPYRIGHT HOLDER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  17. # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND IN NO
  18. # EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  19. # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM ITS USE,
  20. # LOSS OF DATA, PROFITS, QPA OR GPA, WHETHER IN AN ACTION OF CONTRACT,
  21. # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
  22. # THE USE OR PERFORMANCE OF THIS SOFTWARE.
  23. #
  24.  
  25. #
  26. # Imakefile for xdiary
  27. # Use xmkmf at your site to generate a site specific Makefile
  28. #
  29.  
  30.         DEPLIBS = $(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB) $(DEPXEXTLIB)
  31. LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) $(XEXTLIB)
  32.            SRCS = Calendar.c \
  33.                   StrInRect.c \
  34.                   StrTable.c \
  35.                   Gravity.c \
  36.                   Date.c \
  37.                   DayName.c \
  38.                   template.c \
  39.                   diary.c \
  40.                   main.c
  41.  
  42.            OBJS = Calendar.o \
  43.                   StrInRect.o \
  44.                   StrTable.o \
  45.                   Gravity.o \
  46.                   Date.o \
  47.                   DayName.o \
  48.                   diary.o \
  49.                   template.o \
  50.                   main.o
  51.  
  52. ComplexProgramTarget(xdiary)
  53.  
  54. InstallAppDefaults(Xdiary)
  55.