source: trunk/vizservers/nanoscale/Makefile.in @ 749

Last change on this file since 749 was 749, checked in by dkearney, 17 years ago

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.

File size: 724 bytes
Line 
1TARGETS         = client mycat nanoscale
2
3CC              = @CC@
4CFLAGS          = @CFLAGS@
5LDFLAGS         = @LDFLAGS@
6
7prefix          = @prefix@
8exec_prefix     = @exec_prefix@
9bindir          = @bindir@
10libdir          = @libdir@
11includedir      = @includedir@
12mandir          = @mandir@
13
14INSTALL         = @INSTALL@
15INSTALL_PROGRAM = ${INSTALL} -m 755
16INSTALL_DATA    = ${INSTALL} -m 644
17INSTALL_SCRIPT  = ${INSTALL} -m 644
18
19.PHONY: all install clean
20
21all: $(TARGETS)
22
23nanoscale: server.o
24        $(CC) $(CFLAGS) $(LDFLAGS) server.o -o nanoscale
25
26install: nanoscale
27        $(INSTALL_PROGRAM) -D nanoscale $(bindir)/nanoscale
28
29client: client.o clientlib.o
30
31clean:
32        rm -rf a.out *.o *~ core* $(TARGETS) *.log *.tmp logfile* .deps/*.d
Note: See TracBrowser for help on using the repository browser.