home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / p / pdraw.zip / IMAKEFIL next >
Text File  |  1992-05-07  |  2KB  |  64 lines

  1. /**/# =S+H= @(#)Imakefile    1.3 Stardent 92/05/07
  2. /*
  3.  *            Copyright (c) 1991 by
  4.  *            Stardent Computer Inc.
  5.  *            All Rights Reserved
  6.  *
  7.  * Permission to use, copy, modify, and distribute this software and its
  8.  * documentation for any purpose and without fee is hereby granted,
  9.  * provided that the above copyright notice appear in all copies and that
  10.  * both that copyright notice and this permission notice appear in
  11.  * supporting documentation, and that the name of Stardent Computer not be
  12.  * used in advertising or publicity pertaining to distribution of the
  13.  * software without specific, written prior permission. Stardent Computer
  14.  * makes no representations about the suitability of this software for any
  15.  * purpose.  It is provided "as is" without express or implied warranty.
  16.  *
  17.  * Fri, 06 Dec 91 From: Greg Stiehl  
  18.  * I've cleaned up the Imakefile.  Thought you might want it:
  19.  *************************************************************************
  20.  *
  21.  *                         P D R A W
  22.  *
  23.  *  A PEX/PHIGS drawing program. (or the baby CAD program)
  24.  *
  25.  *
  26.  *  Jan "YON" Hardenbergh, fall 1991
  27.  *
  28.  * Note: MSimpleUidTarget(pdraw) is a Motif rule. As are:
  29.  *    $(MRESOURCELIB) $(XMLIB)
  30.  *
  31.  */
  32.  
  33. #ifdef SYSV
  34. UCBLIB = /usr/ucblib/libucb.a
  35. #endif
  36.  
  37. #ifdef MOTIF
  38. MOTIF_LIBS =  $(MRESOURCELIB) $(XMLIB) $(UCBLIB)
  39. #else
  40. MOTIF_LIBS = -lMrm -lXm  $(UCBLIB)
  41. #endif
  42.  
  43. LOCAL_LIBRARIES = $(MOTIF_LIBS) $(XTOOLLIB) $(XMULIB) $(PHIGSLIB) $(XLIB)
  44. DEFINES = PexClientDefines
  45. INCLUDES = -I.  -I$(MTOOLKITSRC) -I$(LIBSRC) PhigsInclude
  46. CCOPTIONS = PexCCOptions
  47.  
  48. SRCS=    pdraw.c
  49.  
  50. OBJS=    pdraw.o
  51.  
  52. SimpleProgramTarget(pdraw)
  53.  
  54. #ifdef MOTIF
  55. MSimpleUidTarget(pdraw)
  56. #else
  57. all:: pdraw.uid
  58.  
  59. pdraw.uid: pdraw.uil
  60.      uil -o pdraw.uid pdraw.uil
  61. #endif
  62.  
  63. DependTarget()
  64.