RasMol2
|
Announce,
ChangeLog,
ChangeLog.1,
ChangeLog.2,
ChangeLog.3,
ChangeLog.4,
INSTALL,
Imakefile,
Makefile,
Makefile.bak,
Makefile.in,
Makefile.nt,
Makefile.pc,
PROJECTS,
README,
TODO,
abstree.c,
abstree.h,
applemac.c,
bitmaps.h,
command.c,
command.h,
data,
doc,
font.h,
graphics.h,
molecule.c,
molecule.h,
mswin,
mswin31.c,
outfile.c,
outfile.h,
pixutils.c,
pixutils.h,
rasmac.c,
rasmol.c,
rasmol.h,
rasmol.hlp,
rasmol.sh,
raswin.c,
render.c,
render.h,
script.c,
script.h,
tokens.h,
transfor.c,
transfor.h,
vms,
x11win.c,
|
|
|
# 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
OBJS = rasmol.o molecule.o abstree.o command.o transfor.o render.o x11win.o \
pixutils.o outfile.o script.o
# Previous Risc/Os definition
# LOCAL_LIBRARIES = -lm -lXinput $(XLIB)
LOCAL_LIBRARIES = -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
|