| 
      RasMol2
      | 
     
    
     | 
      Announce,
      ChangeLog,
      ChangeLog.1,
      ChangeLog.2,
      ChangeLog.3,
      ChangeLog.4,
      ChangeLog.5,
      ChangeLog.6,
      INSTALL,
      Imakefile,
      Makefile,
      Makefile.bak,
      Makefile.in,
      Makefile.nt,
      Makefile.pc,
      PROJECTS,
      README,
      TODO,
      abstree.c,
      abstree.h,
      abstree.o,
      applemac.c,
      bitmaps.h,
      cexio.c,
      command.c,
      command.h,
      command.o,
      data,
      doc,
      font.h,
      graphics.h,
      infile.c,
      infile.h,
      infile.o,
      mac,
      molecule.c,
      molecule.h,
      molecule.o,
      mswin,
      mswin31.c,
      outfile.c,
      outfile.h,
      outfile.o,
      pixutils.c,
      pixutils.h,
      pixutils.o,
      rasmac.c,
      rasmol.c,
      rasmol.h,
      rasmol.hlp,
      rasmol.o,
      rasmol.sh,
      raswin.c,
      render.c,
      render.h,
      render.o,
      repres.c,
      repres.h,
      repres.o,
      script.c,
      script.h,
      script.o,
      tokens.h,
      transfor.c,
      transfor.h,
      transfor.o,
      vms,
      x11win.c,
      x11win.o,
      | 
     
    
   | 
  
 
   | 
  
# Imakefile
# RasMol2 Molecular Graphics
# Roger Sayle, June 1994
# Version 2.4
# DEPTHDEF = -DTHIRTYTWOBIT
DEPTHDEF = -DEIGHTBIT
# RasMol's on-line help direcory
#   e.g. /usr/local/lib/rasmol/rasmol.hlp
RASMOLDIR = $(USRLIBDIR)/rasmol/
DEFINES = -DRASMOLDIR=\"$(RASMOLDIR)\" $(DEPTHDEF)
SRCS = rasmol.c rasmol.h molecule.c molecule.h abstree.c abstree.h \
       command.c command.h tokens.h transfor.c transfor.h render.c render.h \
       x11win.c graphics.h pixutils.c pixutils.h font.h outfile.c outfile.h \
       script.c script.h infile.c infile.h repres.c repres.h
OBJS = rasmol.o molecule.o abstree.o command.o transfor.o render.o repres.o \
       x11win.o pixutils.o outfile.o script.o infile.o
# Previous Risc/Os definition
# LDLIBS = -lm -lXinput $(XLIB)
# Additional RS6000 AIX MITSHM Library
# LDLIBS = -lm -lXi -lXextSam $(XLIB)
LDLIBS = -lm -lXi $(XLIB)
#
# Architecture Specific Rules
#
#ifdef HPArchitecture
CCOPTIONS = -Ae
CDEBUGFLAGS = +O2 +Onolimit
#endif
ComplexProgramTarget(rasmol)
MakeDirectories(install,$(RASMOLDIR))
InstallNonExec(rasmol.hlp,$(RASMOLDIR))
InstallNonExec(data/1crn.pdb,$(RASMOLDIR))
InstallNonExec(data/3cro.pdb,$(RASMOLDIR))
rasmol.man::	doc/rasmol.1
		ln -s doc/rasmol.1 rasmol.man
   |