source: trunk/vizservers/pymolproxy/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: 723 bytes
Line 
1TARGETS = pymolproxy
2
3CC      = @CC@
4CFLAGS  = @CFLAGS@ -I@TCL_INCL_DIR@
5LDFLAGS = @LDFLAGS@
6# LDFLAGS = $(LDFLAGS)
7
8prefix          = @prefix@
9exec_prefix     = @exec_prefix@
10bindir          = @bindir@
11libdir          = @libdir@
12includedir      = @includedir@
13mandir          = @mandir@
14
15INSTALL         = @INSTALL@
16INSTALL_PROGRAM = ${INSTALL} -m 755
17INSTALL_DATA    = ${INSTALL} -m 644
18INSTALL_SCRIPT  = ${INSTALL} -m 644
19
20.PHONY: all install clean
21
22all: $(TARGETS)
23
24pymolproxy: pymolproxy.o
25        $(CC) $(CFLAGS) $(LDFLAGS) -DSTANDALONE pymolproxy.c -o pymolproxy -ltcl8.4
26
27install: pymolproxy
28        $(INSTALL_PROGRAM) pymolproxy $(bindir)/pymolproxy
29
30clean:
31        rm -rf a.out *.o *~ core* $(TARGETS) *.log *.tmp logfile* .deps/*.d
32
Note: See TracBrowser for help on using the repository browser.