home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-12-28 | 1.1 KB | 51 lines |
- /**/#
- /**/# Imakefile for xkal
- /**/#
- /**/# George Ferguson, ferguson@cs.rochester.edu, 15 Oct 1990.
- /**/#
- /**/# $Id: Imakefile,v 1.1 90/10/28 13:05:04 ferguson Exp $
- /**/#
-
- /**/#
- /**/# Here's what to change to customize the installation...
- /**/#
- /**/# where do you want this stuff?
- /**/#
- BINDIR = /scratch/ferguson/xkal/Bin
- LIBDIR = /scratch/ferguson/xkal/Lib
- MANDIR = /scratch/ferguson/xkal/Man
-
- /**/#
- /**/# where is the ezMenu package?
- /**/#
- EZMENU_DIR = /u/ferguson/src/x/EzMenu
- INCLUDES += -I$(EZMENU_DIR)
- EXTRA_LIBRARIES += -L$(EZMENU_DIR) -lezMenu$(TARGET_MACH)
-
- /**/#
- /**/# where is the app-defaults to C converter?
- /**/#
- AD2C = ad2c
-
- /**/#
- /**/# Nothing to change below here (except maybe CDEBUGFLAGS).
- /**/#
- DEPLIBS = XawClientDepLibs
- LOCAL_LIBRARIES = XawClientLibs
- CDEBUGFLAGS = -g
-
- SRCS = xkal.c month.c day.c schedule.c db.c util.c date-strings.c
- OBJS = xkal.o month.o day.o schedule.o db.o util.o date-strings.o
-
- ComplexProgramTarget(xkal)
- InstallAppDefaults(Xkal)
-
- /**/#
- /**/# generate C code for fallback resources
- /**/#
- Xkal.ad.h: Xkal.ad
- $(AD2C) Xkal.ad >Xkal.ad.h
-
- clean::
- $(RM) Xkal.ad.h
-