ubuntuusers.de

Hilfe beim MakeFile

Status: Ungelöst | Ubuntu-Version: Nicht spezifiziert
Antworten |

m.kossner

Anmeldungsdatum:
29. Januar 2006

Beiträge: 49

Hi Leute, ich wil das Programm HotDock kompilieren. http://wwwcs.uni-paderborn.de/~lst//HotDock/

Leider klappt es nicht. Ich führe das eher auf meine mangelnde Erfahrung zurück. Da ich Irgendwie keine Anhänge machen kann, Paste ich hier mal die Readme und das zu ändernde Makefile:

Readme:

  • ** HotDock README file ***
    ___________________________
    Features of HotDock

O Visualisation of komplex moleculs in different
common representations
O Ability, to move two moleculs interaktive relatively
to each other
O Collision detection with sound support
O Stereo display capability
O Ability to save the current position of two molecules
to a file in a nativ-HotDock, Invetor or PS format.

___________________________
Availability

The IRIX 5.3 (6.2) executable of HotDock is included.
For other systems with GL you may compile the included source code.

HotDock uses the program Babel to read PDB files. It would'n work without it.
So be sure to have Babel alredy installed on your system.
You may download it from ftp://joplin.biosci.arizona.edu/pub/Babel/

___________________________
Disclaimer and Copyright

This program is free software but is not in the public domain.
It is distributed in the hope that it will be useful to the molecular
modelling community, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Should
the software prove defective YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

___________________________
Documentation

is available on http://www.uni-paderborn.de/fachbereich/AG/agdomik/

___________________________
Installation

* untar the distribution with tar xf hotdock.tar or
tar xf hotdock.IRIXbin.tar respectively

* For non IRIX users only:
Edit file Makefile according to your system. Call make.

* Edit file 'hotdock'. Change the value for the BABEL_DIR and PATH
to proper directories, where Babel is intalled. Change LD_LIBRARY_PATH
to directories where libraries for X11 and motif are.

Makefile:

PRG = HotDock
CC = CC
CC_FLAGS = +p -g $(ARCH_FLAG)

X11_VERSION=X11

X_INC = -I/usr/local/$(X11_VERSION)/include
MOTIF_INC = -I/usr/local/$(X11_VERSION)/motif/include
INVENTOR_INC =
INC = $(X_INC) $(MOTIF_INC) $(INVENTOR_INC)

X_LIB = -L/usr/local/$(X11_VERSION)/lib
MOTIF_LIB = -L/usr/local/$(X11_VERSION)/motif/lib
INVENTOR_LIB =
EXTRA_LIB = -lm -lXm -lXt -lXmu -lXext -lX11 -lInventor -lInventorXt $(ARCH_LIB)
LIB = $(INVENTOR_LIB) $(MOTIF_INC) $(X_INC) $(EXTRA_LIB)

OBJ = laden_speichern.o gr_funcs.o cb.o transform.o doking.o buildlayout.o build_graph_init.o build_graph.o main.o protein.o atom.o bindung.o amino.o mteil.o sphere.o punkt.o element.o

$(PRG) : $(OBJ)
$(CC) $(LIB) -o $(PRG) $(OBJ)

.c.o :
$(CC) -c $(CC_FLAGS) $(INC) $<
Kann mir jemdnd dabei helfen?

Grüsse , Markus

haraldkl

Avatar von haraldkl

Anmeldungsdatum:
21. Juli 2005

Beiträge: 1903

Wohnort: Würselen

Wo hängts denn?

Antworten |