home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / demos / gpc / Imakefile < prev    next >
Encoding:
Makefile  |  1991-08-22  |  2.4 KB  |  59 lines

  1. XCOMM $XConsortium: Imakefile,v 1.15 91/08/22 14:26:28 rws Exp $
  2. XCOMM
  3. XCOMM Copyright 1989,1990, 1991 by Sun Microsystems, Inc. and the X Consortium
  4. XCOMM
  5. XCOMM                         All Rights Reserved
  6. XCOMM
  7. XCOMM Permission to use, copy, modify, and distribute this software and its
  8. XCOMM documentation for any purpose and without fee is hereby granted,
  9. XCOMM provided that the above copyright notice appear in all copies and that
  10. XCOMM both that copyright notice and this permission notice appear in
  11. XCOMM supporting documentation, and that the names of Sun Microsystems,
  12. XCOMM the X Consortium, and MIT not be used in advertising or publicity
  13. XCOMM pertaining to distribution of the software without specific, written
  14. XCOMM prior permission.
  15. XCOMM
  16. XCOMM SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  17. XCOMM INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  18. XCOMM EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  19. XCOMM CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  20. XCOMM USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  21. XCOMM OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  22. XCOMM PERFORMANCE OF THIS SOFTWARE.
  23.  
  24.        INCLUDES = PhigsInclude
  25. LOCAL_LIBRARIES = $(PHIGSLIB) $(XMULIB) $(XLIB)
  26.         DEPLIBS = $(DEPPHIGSLIB) $(DEPXMULIB) $(DEPXLIB)
  27.  
  28. SYS_LIBRARIES = -lm
  29.  
  30. SRCS =  basestat.c bif_lex.c bifbuild.c bifconfig.c bifparse.c bld_prim.c \
  31.     bld_str.c bld_view.c bldgeneric.c brf_ents.c brf_phead.c brf_trv.c \
  32.     db_tools.c doentity.c dummies.c fakefigs.c new_ents.c gen_ents.c \
  33.     init_bench.c listbufs.c maptools.c matrix.c \
  34.     traverser.c brf_except.c fillcont.c pixbuf.c stopwatch.c
  35.  
  36. OBJS =   basestat.o bif_lex.o bifbuild.o bifconfig.o bifparse.o bld_prim.o \
  37.     bld_str.o bld_view.o bldgeneric.o brf_ents.o brf_phead.o brf_trv.o \
  38.     db_tools.o doentity.o dummies.o fakefigs.o new_ents.o gen_ents.o \
  39.     init_bench.o listbufs.o maptools.o matrix.o \
  40.     traverser.o brf_except.o fillcont.o pixbuf.o stopwatch.o
  41.  
  42.  
  43.  
  44. XCOMM USING_PHIGS Build gpc for PHIGS_API
  45. XCOMM HAVEPIXELS  Turns on code not particular to the SI, used in conjuction
  46. XCOMM        with specialized GDP's or GSE's not supported by PEX_API
  47.  
  48. DEFINES = -DUSING_PHIGS 
  49.  
  50. ComplexProgramTarget(plbpex)
  51.  
  52. bifparse::
  53.     $(CP) bifparse.yacc bifparse.y
  54.     $(YACC) -d -v bifparse.y
  55.     $(MV) y.tab.c bifparse.c
  56.     $(MV) y.tab.h bifparse.h
  57.     $(RM) bifparse.y
  58.  
  59.