Last change
on this file since 749 was
749,
checked in by dkearney, 16 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:
811 bytes
|
Rev | Line | |
---|
[749] | 1 | TARGETS = client mycat nanoscale |
---|
[409] | 2 | |
---|
[749] | 3 | CC = gcc |
---|
| 4 | CFLAGS = -g -O2 |
---|
| 5 | LDFLAGS = |
---|
| 6 | |
---|
| 7 | prefix = /home/nanohub/dkearney/repo/viz_20070521 |
---|
| 8 | exec_prefix = /home/nanohub/dkearney/repo/viz_20070521 |
---|
| 9 | bindir = ${exec_prefix}/bin |
---|
| 10 | libdir = ${exec_prefix}/lib |
---|
| 11 | includedir = ${prefix}/include |
---|
| 12 | mandir = ${prefix}/man |
---|
| 13 | |
---|
| 14 | INSTALL = /usr/bin/install -c |
---|
| 15 | INSTALL_PROGRAM = ${INSTALL} -m 755 |
---|
| 16 | INSTALL_DATA = ${INSTALL} -m 644 |
---|
| 17 | INSTALL_SCRIPT = ${INSTALL} -m 644 |
---|
| 18 | |
---|
| 19 | .PHONY: all install clean |
---|
| 20 | |
---|
[409] | 21 | all: $(TARGETS) |
---|
| 22 | |
---|
[717] | 23 | nanoscale: server.o |
---|
[749] | 24 | $(CC) $(CFLAGS) $(LDFLAGS) server.o -o nanoscale |
---|
[467] | 25 | |
---|
[717] | 26 | install: nanoscale |
---|
[749] | 27 | $(INSTALL_PROGRAM) -D nanoscale $(bindir)/nanoscale |
---|
[717] | 28 | |
---|
[409] | 29 | client: client.o clientlib.o |
---|
| 30 | |
---|
| 31 | clean: |
---|
| 32 | rm -rf a.out *.o *~ core* $(TARGETS) *.log *.tmp logfile* .deps/*.d |
---|
Note: See
TracBrowser
for help on using the repository browser.