XCOMM -*-Makefile-*-
XCOMM --------------------------------------------------------------------------
XCOMM File:         Imakefile
XCOMM RCS:          $Header: /users/npm/src/winterp/src-client/RCS/Imakefile,v 2.4 1994/06/06 15:14:40 npm Exp $
XCOMM Description:  Imakefile for Winterp-Lisp Client 'wl' and optionally 'wl-tcpip'
XCOMM Author:       Niels Mayer
XCOMM Created:      Fri Nov 24 19:47:38 1989
XCOMM Modified:     
XCOMM Language:     Imake
XCOMM Package:      N/A
XCOMM Status:       X11r6 contrib release
XCOMM
XCOMM Copyright (C) 1994, Enterprise Integration Technologies Corp. and Niels Mayer.
XCOMM WINTERP 1.15-1.99, Copyright (c) 1993, Niels P. Mayer.
XCOMM WINTERP 1.0-1.14, Copyright (c) 1989-1992 Hewlett-Packard Co. and Niels Mayer.
XCOMM 
XCOMM Permission to use, copy, modify, distribute, and sell this software and
XCOMM its documentation for any purpose is hereby granted without fee, provided
XCOMM that the above copyright notice appear in all copies and that both that
XCOMM copyright notice and this permission notice appear in supporting
XCOMM documentation, and that the name of Enterprise Integration Technologies,
XCOMM Hewlett-Packard Company, or Niels Mayer not be used in advertising or
XCOMM publicity pertaining to distribution of the software without specific,
XCOMM written prior permission. Enterprise Integration Technologies, 
XCOMM Hewlett-Packard Company, and Niels Mayer makes no representations about
XCOMM the suitability of this software for any purpose.  It is provided "as is"
XCOMM without express or implied warranty.
XCOMM 
XCOMM ENTERPRISE INTEGRATION TECHNOLOGIES, HEWLETT-PACKARD COMPANY AND NIELS
XCOMM MAYER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 
XCOMM ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 
XCOMM ENTERPRISE INTEGRATION TECHNOLOGIES, HEWLETT-PACKARD COMPANY OR NIELS
XCOMM MAYER BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
XCOMM DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
XCOMM IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
XCOMM OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
XCOMM
XCOMM See ./winterp/COPYRIGHT for information on contacting the authors.
XCOMM
XCOMM Please e-mail comments, modifications, questions, improvements and
XCOMM bugfixes to the WINTERP mailing list winterp@netcom.com. Please send 
XCOMM mailing list subscribe/unsubscribe notices to winterp-request@netcom.com .
XCOMM 
XCOMM Post XLISP-specific questions/information to the USENET newsgroup
XCOMM comp.lang.lisp.x.
XCOMM
XCOMM --------------------------------------------------------------------------


#if (defined(SunArchitecture) && (OSMajorVersion > 4))
XCOMM -- Solaris 2.3 running built-in X11/Motif/cc from 2.3 SDK option.
 SYS_LIBRARIES = -lsocket -lnsl
 INCLUDES = -I. 
 /* DEFINES = */
#else /* (defined(SunArchitecture) && (OSMajorVersion > 4)) */

#if (defined(SunArchitecture) && (OSMajorVersion <= 4))
XCOMM -- SunOS 4.1.3 -- you'll probably need to set SYS_LIBRARIES and INCLUDES
XCOMM -- unless your imake/xmkmf was set up correctly for your Motif option.
 /* SYS_LIBRARIES = */
 INCLUDES = -I.
 /* DEFINES = */
#else /* (defined(SunArchitecture) && (OSMajorVersion <= 4)) */

#ifdef HPArchitecture
XCOMM -- HP HPUX 9.X running built-in X11/Motif/cc from developer environment option.
 /* SYS_LIBRARIES = */
 INCLUDES = -I.	
 /* DEFINES = */
#else /* !defined(HPArchitecture) */

#ifdef SGIArchitecture
XCOMM -- SGI Irix 5.X running built-in X11/Motif/cc from "IDO" option.
XCOMM -- use mmkmf (Motif version of xmkmf) to build Imakefiles
 /* SYS_LIBRARIES = */
 INCLUDES = -I.
 /* DEFINES = */
#else /* !defined(SGIArchitecture) */

#ifdef OSF1Architecture
XCOMM -- DEC OSF1 V2.0 running DEC's X11/Motif/cc developer environment option.
 /* SYS_LIBRARIES = */
 INCLUDES = -I.
 /* DEFINES = */
#else /* !defined(OSF1Architecture) */

XCOMM -- DEFAULT: ??? OS/Machine
 /* SYS_LIBRARIES = */
 INCLUDES = -I. 
 /* DEFINES = */

#endif /* OSF1Architecture */
#endif /* SGIArchitecture */
#endif /* HPArchitecture */
#endif /* (defined(SunArchitecture) && (OSMajorVersion <= 4)) */
#endif /* (defined(SunArchitecture) && (OSMajorVersion > 4)) */


XCOMM --
XCOMM -- Uncomment this to build 'wl-tcpip', the client for WINTERP's optional 
XCOMM -- INET-domain Winterp-Lisp server. See winterp/doc/winterp.doc for details.
XCOMM --
/* SimpleProgramTarget(wl-tcpip) */

SimpleProgramTarget(wl)

LinkFileList(all,wl wl-tcpip,../bin,../src-client)

InstallManPage(wl,$(MANDIR))
InstallManPage(wl-tcpip,$(MANDIR))
