1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#
# Copyright 1991 by David A. Curry
#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted without fee, provided that
# the above copyright notice appear in all copies and that both that copyright
# notice and this permission notice appear in supporting documentation. The
# author makes no representations about the suitability of this software for
# any purpose. It is provided "as is" without express or implied warranty.
#
# Imakefile for xpostit.
#
# David A. Curry
# Purdue University
# Engineering Computer Network
# West Lafayette, IN 47907
# davy@ecn.purdue.edu
#
# $Log: Imakefile,v $
# Revision 1.9 1992/12/10 14:18:32 davy
# Added changes from Rainer Klute (klute@irb.informatik.uni-dortmund.de) to
# save the current state of the note (normal, iconic, withdrawn) in the
# save file.
#
# Revision 1.8 1992/12/09 20:16:16 davy
# Got rid of leading tab. Some make's don't like it.
#
# Revision 1.7 1992/12/09 19:54:16 davy
# Added XI18N international Xaw support from Hiroshi Kuribayashi,
# kuri@omron.co.jp.
#
# Revision 1.6 1992/12/09 19:14:50 davy
# Added install of color app-defaults file.
#
# Revision 1.5 1991/11/08 14:00:31 davy
# Changed name of app-defaults file to match class name.
#
# Revision 1.4 91/09/06 18:28:49 davy
# Added copyright/permission notice for submission to MIT R5 contrib.
#
# Revision 1.3 91/09/06 17:12:29 davy
# Miscellaneous portability changes, added new files.
#
# Revision 1.2 90/06/14 11:16:50 davy
# Ported to X11 Release 4. Added app-defaults file.
#
#
#
# To compile with the X11R5 contributed international version of the Athena
# widgets, comment out the SYS_LIBRARIES and DEPLIBS lines below and replace
# them with:
#
# DEPXAWLIB = $(CONTRIBSRC)/lib/Xaw/libXaw.a
# XAWLIB = $(DEPXAWLIB)
# DEPXWCHARLIB = $(CONTRIBSRC)/lib/Xwchar/libXwchar.a
# XWCHARLIB = $(DEPXWCHARLIB)
# SYS_LIBRARIES = XawClientLibs $(DEPXWCHARLIB)
# DEPLIBS = XawClientDepLibs $(DEPXWCHARLIB)
DEFINES = -DXI18N
#
# NOTE: I have not tested this international stuff. The changes are from
# Hiroshi Kuribayashi (kuri@omron.co.jp) at OMRON Corp. in Japan.
#
SYS_LIBRARIES = XawClientLibs
DEPLIBS = XawClientDepLibs
SRCS = Plaid.c confirm.c menu.c note.c plaid.c title.c util.c \
version.c xpostit.c
OBJS = Plaid.o confirm.o menu.o note.o plaid.o title.o util.o \
version.o xpostit.o
ComplexProgramTarget(xpostit)
InstallAppDefaults(XPostit)
InstallAppDefaults(XPostit-bw)
|