Ignore:
Timestamp:
May 28, 2007, 11:45:31 AM (17 years ago)
Author:
dkearney
Message:

moved vizservers directory to top level. added configure/makefiles to nanovis, nanoscale, pymolproxy all controlled by a configure script in
vizservers directory. to build you need to specify where rappture and tcl are installed. the start_viz.sh script was adjusted to copy the voronoi and
rappture libraries over to the tmp directory because these files tend to reside on an nfs mounted drive.

Location:
trunk/vizservers
Files:
1 added
1 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/vizservers/nanoscale/Makefile

    r717 r749  
    1 CFLAGS  = -O2 -g
    2 LDFLAGS =
    3 TARGETS = client mycat nanoscale
    4 INSTALL_DIR     = /opt/nanoscale
     1TARGETS         = client mycat nanoscale
     2
     3CC              = gcc
     4CFLAGS          = -g -O2
     5LDFLAGS         =
     6
     7prefix          = /home/nanohub/dkearney/repo/viz_20070521
     8exec_prefix     = /home/nanohub/dkearney/repo/viz_20070521
     9bindir          = ${exec_prefix}/bin
     10libdir          = ${exec_prefix}/lib
     11includedir      = ${prefix}/include
     12mandir          = ${prefix}/man
     13
     14INSTALL         = /usr/bin/install -c
     15INSTALL_PROGRAM = ${INSTALL} -m 755
     16INSTALL_DATA    = ${INSTALL} -m 644
     17INSTALL_SCRIPT  = ${INSTALL} -m 644
     18
     19.PHONY: all install clean
    520
    621all: $(TARGETS)
    722
    823nanoscale: server.o
    9         cc $(CFLAGS) $(LDFLAGS) server.o -o nanoscale
     24        $(CC) $(CFLAGS) $(LDFLAGS) server.o -o nanoscale
    1025
    1126install: nanoscale
    12         cp nanoscale $(INSTALL_DIR)/bin
     27        $(INSTALL_PROGRAM) -D nanoscale $(bindir)/nanoscale
    1328
    1429client: client.o clientlib.o
Note: See TracChangeset for help on using the changeset viewer.