source: trunk/gui/vizservers/pymolproxy/Makefile @ 723

Last change on this file since 723 was 723, checked in by nkissebe, 17 years ago

fix install dir for pymolproxy

File size: 346 bytes
Line 
1CFLAGS  = -g -I/usr/include/tcl8.4
2LDFLAGS =
3TARGETS = pymolproxy
4INSTALL_DIR     = /opt/pymolproxy
5
6all: $(TARGETS)
7
8install: pymolproxy
9        cp pymolproxy $(INSTALL_DIR)/bin/pymolproxy
10
11pymolproxy: pymolproxy.o
12        cc $(CFLAGS) -DSTANDALONE pymolproxy.c -o pymolproxy -ltcl8.4
13
14clean:
15        rm -rf a.out *.o *~ core* $(TARGETS) *.log *.tmp logfile* .deps/*.d
16
Note: See TracBrowser for help on using the repository browser.