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

  1. /**/#
  2. /**/#    Imakefile for xkal
  3. /**/#
  4. /**/#   George Ferguson, ferguson@cs.rochester.edu, 15 Oct 1990.
  5. /**/#
  6. /**/#    $Id: Imakefile,v 1.1 90/10/28 13:05:04 ferguson Exp $
  7. /**/#
  8.  
  9. /**/#
  10. /**/# Here's what to change to customize the installation...
  11. /**/#
  12. /**/# where do you want this stuff?
  13. /**/#
  14. BINDIR = /scratch/ferguson/xkal/Bin
  15. LIBDIR = /scratch/ferguson/xkal/Lib
  16. MANDIR = /scratch/ferguson/xkal/Man
  17.  
  18. /**/#
  19. /**/# where is the ezMenu package?
  20. /**/#
  21. EZMENU_DIR =        /u/ferguson/src/x/EzMenu
  22. INCLUDES +=        -I$(EZMENU_DIR)
  23. EXTRA_LIBRARIES +=    -L$(EZMENU_DIR) -lezMenu$(TARGET_MACH)
  24.  
  25. /**/#
  26. /**/# where is the app-defaults to C converter?
  27. /**/#
  28. AD2C = ad2c
  29.  
  30. /**/#
  31. /**/# Nothing to change below here (except maybe CDEBUGFLAGS).
  32. /**/#
  33. DEPLIBS =        XawClientDepLibs
  34. LOCAL_LIBRARIES =    XawClientLibs
  35. CDEBUGFLAGS =         -g
  36.  
  37. SRCS = xkal.c month.c day.c schedule.c db.c util.c date-strings.c
  38. OBJS = xkal.o month.o day.o schedule.o db.o util.o date-strings.o
  39.  
  40. ComplexProgramTarget(xkal)
  41. InstallAppDefaults(Xkal)
  42.  
  43. /**/#
  44. /**/#    generate C code for fallback resources
  45. /**/#
  46. Xkal.ad.h: Xkal.ad
  47.     $(AD2C) Xkal.ad >Xkal.ad.h
  48.  
  49. clean::
  50.     $(RM) Xkal.ad.h
  51.