source: trunk/gui/vizservers/nanoscale/Makefile @ 717

Last change on this file since 717 was 717, checked in by nkissebe, 18 years ago

build binary as "nanoscale" rather than "server". changed install dir to /opt/nanoscale/bin

File size: 334 bytes
Line 
1CFLAGS  = -O2 -g
2LDFLAGS =
3TARGETS = client mycat nanoscale
4INSTALL_DIR     = /opt/nanoscale
5
6all: $(TARGETS)
7
8nanoscale: server.o
9        cc $(CFLAGS) $(LDFLAGS) server.o  -o nanoscale
10
11install: nanoscale
12        cp nanoscale $(INSTALL_DIR)/bin
13
14client: client.o clientlib.o
15
16clean:
17        rm -rf a.out *.o *~ core* $(TARGETS) *.log *.tmp logfile* .deps/*.d
Note: See TracBrowser for help on using the repository browser.