head	1.15;
access;
symbols
	AR73A:1.9
	DIST1_0:1.3;
locks; strict;
comment	@# @;


1.15
date	97.05.22.20.50.39;	author bert;	state Exp;
branches;
next	1.14;

1.14
date	97.04.08.19.18.01;	author bert;	state Exp;
branches;
next	1.13;

1.13
date	97.03.28.23.21.28;	author bert;	state Exp;
branches;
next	1.12;

1.12
date	92.04.23.21.29.10;	author lwvanels;	state Exp;
branches;
next	1.11;

1.11
date	92.01.07.18.43.32;	author lwvanels;	state Exp;
branches
	1.11.1.1;
next	1.10;

1.10
date	91.09.10.14.45.10;	author lwvanels;	state Exp;
branches;
next	1.9;

1.9
date	91.07.13.14.21.44;	author lwvanels;	state Rel;
branches;
next	1.8;

1.8
date	91.07.11.15.18.50;	author lwvanels;	state Exp;
branches;
next	1.7;

1.7
date	91.07.11.10.53.55;	author lwvanels;	state Exp;
branches;
next	1.6;

1.6
date	91.06.30.12.22.53;	author lwvanels;	state Exp;
branches
	1.6.1.1;
next	1.5;

1.5
date	91.06.29.19.10.23;	author lwvanels;	state Exp;
branches;
next	1.4;

1.4
date	91.06.29.18.37.43;	author lwvanels;	state Exp;
branches;
next	1.3;

1.3
date	91.04.18.21.52.12;	author lwvanels;	state Rel;
branches;
next	1.2;

1.2
date	91.03.24.15.01.20;	author lwvanels;	state Rel;
branches;
next	1.1;

1.1
date	91.03.06.15.44.47;	author lwvanels;	state Exp;
branches;
next	;

1.6.1.1
date	96.08.18.01.13.36;	author bert;	state Exp;
branches;
next	1.6.1.2;

1.6.1.2
date	96.08.18.01.13.38;	author bert;	state Exp;
branches;
next	1.6.1.3;

1.6.1.3
date	96.08.18.01.13.39;	author bert;	state Exp;
branches;
next	1.6.1.4;

1.6.1.4
date	96.08.18.01.13.41;	author bert;	state Exp;
branches;
next	1.6.1.5;

1.6.1.5
date	96.08.18.01.13.43;	author bert;	state Exp;
branches;
next	1.6.1.6;

1.6.1.6
date	96.08.18.01.13.45;	author bert;	state Exp;
branches;
next	1.6.1.7;

1.6.1.7
date	96.08.18.01.13.47;	author bert;	state Exp;
branches;
next	1.6.1.8;

1.6.1.8
date	96.08.18.01.13.49;	author bert;	state Exp;
branches;
next	1.6.1.9;

1.6.1.9
date	96.08.18.01.13.50;	author bert;	state Exp;
branches;
next	;

1.11.1.1
date	92.03.16.15.33.23;	author lwvanels;	state Exp;
branches;
next	;


desc
@Imakefile for the motif OLC client
@


1.15
log
@Removed references to InstallAltLoc
@
text
@#
# $Header: /mit/olcdev/highlander/src/clients/motif/RCS/Imakefile,v 1.14 1997/04/08 19:18:01 bert Exp bert $
# $Author: bert $
#
# For copying and distribution information,
# please see the file <mit-copyright.h>.
#
#

/*#define Profiling*/

#ifdef Profiling
LIBSUFFIX=_p
EXTRA_LOAD_FLAGS=-pg
#endif

SRCS=		main.c procs.c visual.c \
		x_ask.c x_instance.c x_motd.c x_resolve.c \
		x_send.c x_topic.c x_utils.c Cursor.c converters.c
OBJS=		main.o procs.o visual.o \
		x_ask.o x_instance.o x_motd.o x_resolve.o \
		x_send.o x_topic.o x_utils.o Cursor.o converters.o

#if DoUsageLog
LOCAL_LIBRARIES= $(CLIENTLIB) $(COMMONLIB) $(CONFIGLIB) $(LOGGERLIB)
#else
LOCAL_LIBRARIES= $(CLIENTLIB) $(COMMONLIB) $(CONFIGLIB)
#endif

INCLUDES       =  $(XIncludes) $(MotifIncludes)
SYS_LIBRARIES  =  $(HesiodLib) $(ComErrLib) $(KerberosLib) \
		  $(MotifUtilLib) $(MotifLib) \
                  $(MotifToolLib) $(XUtilLib) $(XLib) 
DEPLIBS= $(LOCAL_LIBRARIES)
NO_PROTO=-D_NO_PROTO

DEFINES=-DSA_LOC=\"/usr/athena/bin/xbrowser\" $(NO_PROTO)

Xolc: Xolc.cpp
	$(RM) Xolc
	$(CPP) -P Xolc.cpp > Xolc

NormalProgramTarget(xolc,$(OBJS),$(LOCAL_LIBRARIES),$(LOCAL_LIBRARIES),$(SYS_LIBRARIES))
SaberProgramTarget(xolc,$(SRCS),$(OBJS),$(LOCAL_LIBRARIES),$(SYS_LIBRARIES))

InstallProgram(xolc,$(DESTDIR)/usr/athena/bin)
InstallNonExec(Xolc,$(DESTDIR)/usr/athena/lib/X11/app-defaults)

DependTarget()
LintTarget()

clean::
	$(RM) Xolc

AllTarget(xolc Xolc)
@


1.14
log
@Configuration cleaned up (taken from release 8.1 sources)
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/highlander/src/clients/motif/RCS/Imakefile,v 1.13 1997/03/28 23:21:28 bert Exp bert $
a45 1
#ifdef InstallAltLoc
a47 4
#else
InstallProgram(xolc,$(DESTDIR)/usr/athena)
InstallNonExec(Xolc,$(DESTDIR)/usr/lib/X11/app-defaults)
#endif
@


1.13
log
@Added a separate library to deal with configuration files.
@
text
@d2 2
a3 2
# $Header: /mit/olcdev/highlander/src/clients/motif/RCS/Imakefile,v 1.12 1992/04/23 21:29:10 lwvanels Exp bert $
# $Author: lwvanels $
d30 1
a36 1
#ifdef InstallAltLoc
a37 4
#else
DEFINES=-DSA_LOC=\"/usr/athena/xbrowser\" $(NO_PROTO)
#endif
INCLUDES = -I/mit/motif/include
@


1.12
log
@[vanharen] motif1.1 port
add converters
reorder libraries
add -D_NO_PROTO
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/src/clients/motif/RCS/Imakefile,v 1.11 1992/01/07 18:43:32 lwvanels Exp lwvanels $
d25 1
a25 1
LOCAL_LIBRARIES= $(CLIENTLIB) $(COMMONLIB) $(LOGGERLIB)
d27 1
a27 1
LOCAL_LIBRARIES= $(CLIENTLIB) $(COMMONLIB)
@


1.11
log
@pass Imakefile through cpp
removed excess wcl junk
@
text
@d2 1
a2 1
# $Header: /afs/rel-eng.athena.mit.edu/project/release/current/source/athena/athena.bin/olc/clients/motif/RCS/Imakefile,v 1.9 91/08/12 13:46:05 lwvanels Exp $
d19 1
a19 1
		x_send.c x_topic.c x_utils.c Cursor.c
d22 1
a22 1
		x_send.o x_topic.o x_utils.o Cursor.o
d31 2
a32 2
		  $(MotifUtilLib) $(MotifResLib) $(MotifLib) \
                  $(MotifToolLib) $(XLib) 
d34 2
d37 1
a37 1
DEFINES=-DSA_LOC=\"/usr/athena/bin/xbrowser\"
d39 1
a39 1
DEFINES=-DSA_LOC=\"/usr/athena/xbrowser\"
@


1.11.1.1
log
@Added support for motif 1.1 (converters.c) untested
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/src/clients/motif/RCS/Imakefile,v 1.11 1992/01/07 18:43:32 lwvanels Exp lwvanels $
d19 1
a19 1
		x_send.c x_topic.c x_utils.c Cursor.c converters.c
d22 1
a22 1
		x_send.o x_topic.o x_utils.o Cursor.o converters.o
d32 1
a32 1
                  $(MotifToolLib) $(XUtilLib) $(XLib) 
@


1.10
log
@Added wcl routines, removed visual.c
link with motif-specific toolkit
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.9 91/07/13 14:21:44 lwvanels Rel Locker: raek $
d17 1
a17 1
SRCS=		main.c procs.c \
d19 2
a20 5
		x_send.c x_topic.c x_utils.c Cursor.c \
		callback.c \
		MriRegAll.c WcmReg.c WcmName.c WcmCreate.c WcmCallb.c \
		WcmRegXt.c WcmConvert.c WcmActions.c
OBJS=		main.o procs.o \
d22 1
a22 4
		x_send.o x_topic.o x_utils.o Cursor.o \
		callback.o \
		MriRegAll.o WcmReg.o WcmName.o WcmCreate.o WcmCallb.o \
		WcmRegXt.o WcmConvert.o WcmActions.o
d32 1
a32 1
		  $(MotifToolLib) $(XLib) 
d35 1
a35 1
DEFINES=-DSA_LOC=\"/usr/athena/bin/xbrowser\" -DMOTIF -DMOTIF_MINOR=0
d37 1
a37 1
DEFINES=-DSA_LOC=\"/usr/athena/xbrowser\" -DMOTIF -DMOTIF_MINOR=0
d41 4
d59 4
a62 1
AllTarget(xolc)
@


1.9
log
@back out motif 1.1 changes.
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.9 91/07/13 13:52:45 lwvanels Exp $
d17 1
a17 1
SRCS=		main.c procs.c visual.c \
d19 5
a23 2
		x_send.c x_topic.c x_utils.c Cursor.c
OBJS=		main.o procs.o visual.o \
d25 4
a28 1
		x_send.o x_topic.o x_utils.o Cursor.o
d38 1
a38 1
		  $(XtoolLib) $(XLib) 
d41 1
a41 1
DEFINES=-DSA_LOC=\"/usr/athena/bin/xbrowser\"
d43 1
a43 1
DEFINES=-DSA_LOC=\"/usr/athena/xbrowser\"
@


1.8
log
@fixed app-eefaults path (yet again!)
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.7 91/07/11 10:53:55 lwvanels Exp Locker: lwvanels $
d19 1
a19 1
		x_send.c x_topic.c x_utils.c Cursor.c converters.c
d22 1
a22 1
		x_send.o x_topic.o x_utils.o Cursor.o converters.o
d31 1
a31 1
		  $(MotifUtilLib) $(MotifResLib) $(MotifLib) $(XUtilLib) \
@


1.7
log
@added converters.c
Now inlude MotifUtilLib as well (for string to window converter)
fixed install path for app-defaults
@
text
@d2 1
a2 1
# $Header: /afs/rel-eng.athena.mit.edu/project/release/current/source/athena/athena.bin/olc/clients/motif/RCS/Imakefile,v 1.7 91/07/10 10:25:18 lwvanels Exp $
d46 1
a46 1
InstallNonExec(Xolc,$(DESTDIR)/usr/athena/X11/lib/app-defaults)
@


1.6
log
@Include logging library when appropriate
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.5 91/06/29 19:10:23 lwvanels Exp Locker: lwvanels $
d19 1
a19 1
		x_send.c x_topic.c x_utils.c Cursor.c
d22 1
a22 1
		x_send.o x_topic.o x_utils.o Cursor.o
d31 2
a32 2
		  $(MotifUtilLib) $(MotifResLib) $(MotifLib) $(XtoolLib) \
		  $(XLib) 
d46 1
a46 1
InstallNonExec(Xolc,$(DESTDIR)/usr/athena/lib/X11/app-defaults)
@


1.6.1.1
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.7
(archived for historic purposes)
|> date: 1991/07/10 10:25:18;  author: lwvanels;  state: Exp;  lines: +2 -2
|> fixed app-defaults install location
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.7 1991/07/10 10:25:18 lwvanels Exp $
d46 1
a46 1
InstallNonExec(Xolc,$(DESTDIR)/usr/athena/X11/lib/app-defaults)
@


1.6.1.2
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.8
(archived for historic purposes)
|> date: 1991/07/11 14:28:05;  author: lwvanels;  state: Exp;  lines: +2 -2
|> reverted back to old app-defaults location.
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.8 1991/07/11 14:28:05 lwvanels Exp $
d46 1
a46 1
InstallNonExec(Xolc,$(DESTDIR)/usr/athena/lib/X11/app-defaults)
@


1.6.1.3
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.9
(archived for historic purposes)
|> date: 1991/08/12 13:46:05;  author: lwvanels;  state: Exp;  lines: +3 -3
|> Use Motif Xt, not X11R4 Xt.
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.9 1991/08/12 13:46:05 lwvanels Exp $
d31 2
a32 2
		  $(MotifUtilLib) $(MotifResLib) $(MotifLib) \
                  $(MotifToolLib) $(XLib) 
@


1.6.1.4
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.10
(archived for historic purposes)
|> date: 1992/04/05 17:07:27;  author: probe;  state: Exp;  lines: +10 -3
|> RISC/6000 support (7.3s)
@
text
@d2 2
a3 2
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.10 1992/04/05 17:07:27 probe Exp $
# $Author: probe $
a40 4
Xolc: Xolc.cpp
	$(RM) Xolc
	$(CPP) -P Xolc.cpp > Xolc

d55 1
a55 4
clean::
	$(RM) Xolc

AllTarget(xolc Xolc)
@


1.6.1.5
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.11
(archived for historic purposes)
|> date: 1992/04/23 22:02:23;  author: lwvanels;  state: Exp;  lines: +9 -7
|> [vanharen] motif1.1 conversions
@
text
@d2 2
a3 2
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.11 1992/04/23 22:02:23 lwvanels Exp $
# $Author: lwvanels $
d19 1
a19 1
		x_send.c x_topic.c x_utils.c Cursor.c converters.c
d22 1
a22 1
		x_send.o x_topic.o x_utils.o Cursor.o converters.o
d31 2
a32 2
		  $(MotifUtilLib) $(MotifLib) \
                  $(MotifToolLib) $(XUtilLib) $(XLib) 
a33 2
NO_PROTO=-D_NO_PROTO

d35 1
a35 1
DEFINES=-DSA_LOC=\"/usr/athena/bin/xbrowser\" $(NO_PROTO)
d37 1
a37 1
DEFINES=-DSA_LOC=\"/usr/athena/xbrowser\" $(NO_PROTO)
@


1.6.1.6
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.12
(archived for historic purposes)
|> date: 1992/05/07 11:08:46;  author: lwvanels;  state: Exp;  lines: +2 -3
|> motif local to build machine now.
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.12 1992/05/07 11:08:46 lwvanels Exp $
d41 1
@


1.6.1.7
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.13
(archived for historic purposes)
|> date: 1992/07/17 17:05:19;  author: miki;  state: Exp;  lines: +2 -2
|> added Xext lib
@
text
@d2 2
a3 2
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.13 1992/07/17 17:05:19 miki Exp $
# $Author: miki $
d32 1
a32 1
                  $(MotifToolLib) $(XUtilLib) $(XLib) $(XextLib)
@


1.6.1.8
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.14
(archived for historic purposes)
|> date: 1992/11/03 11:49:22;  author: miki;  state: Exp;  lines: +8 -3
|> added lm for Sun
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.14 1992/11/03 11:49:22 miki Exp $
d29 1
a29 5
#ifdef sun
SYS_LIBRARIES  =  $(HesiodLib) $(ComErrLib) $(KerberosLib) \
		  $(MotifUtilLib) $(MotifLib) \
                  $(MotifToolLib) $(XUtilLib) -lm $(XLib) $(XextLib)
#else
a32 1
#endif
@


1.6.1.9
log
@/mit/olcdev/olxx/olta/src/clients/motif/Imakefile, revision 1.15
(archived for historic purposes)
|> date: 1992/11/05 15:31:44;  author: miki;  state: Exp;  lines: +2 -2
|> Oops from 1.14
@
text
@d2 1
a2 1
# $Header: /mit/olcdev/olxx/olta/src/clients/motif/RCS/Imakefile,v 1.15 1992/11/05 15:31:44 miki Exp $
d29 1
a29 1
#ifdef SunArchitecture
@


1.5
log
@define SA_LOC appropriate to install
	  location of stock answer browser
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.4 91/06/29 18:37:43 lwvanels Exp Locker: lwvanels $
d24 3
d28 2
@


1.4
log
@updated install rule to install in
	/usr/athena/bin instead of in locker
	install app-defaults file
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.3 91/04/18 21:52:12 lwvanels Rel Locker: lwvanels $
d29 5
@


1.3
log
@fixed copyright
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/src/clients/motif/RCS/Imakefile,v 1.2 91/03/24 15:01:20 lwvanels Rel Locker: lwvanels $
d35 2
a36 1
InstallProgram(xolc,/mit/olcdev/@@sys)
d38 2
a39 1
InstallProgram(xolc,$(DESTDIR)/usr/athena/xolc)
@


1.2
log
@added install rule
@
text
@d2 1
a2 1
# $Header: /afs/athena.mit.edu/astaff/project/olcdev/vax/clients/motif/RCS/Imakefile,v 1.1 91/03/06 15:44:47 lwvanels Exp Locker: lwvanels $
d4 3
@


1.1
log
@Initial revision
@
text
@d2 2
a3 2
# $Header: $
# $Author: $
d30 6
@
