Ignore:
Timestamp:
May 9, 2007 8:58:58 AM (17 years ago)
Author:
nkissebe
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/vizservers/nanoscale/Makefile

    r467 r717  
    1 CFLAGS  = -g
     1CFLAGS  = -O2 -g
    22LDFLAGS =
    3 TARGETS = server client mycat
    4 INSTALL_DIR     = /opt/nanovis
     3TARGETS = client mycat nanoscale
     4INSTALL_DIR     = /opt/nanoscale
    55
    66all: $(TARGETS)
    77
    8 install: server
    9         cp server $(INSTALL_DIR)/bin/nanoscale
     8nanoscale: server.o
     9        cc $(CFLAGS) $(LDFLAGS) server.o  -o nanoscale
     10
     11install: nanoscale
     12        cp nanoscale $(INSTALL_DIR)/bin
    1013
    1114client: client.o clientlib.o
Note: See TracChangeset for help on using the changeset viewer.