IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2926


Ignore:
Timestamp:
Jan 6, 2005, 11:49:51 AM (22 years ago)
Author:
jhoblitt
Message:

new & improved

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/makefile

    r2923 r2926  
    11SH=/bin/sh
    2 CFLAGS="-fPIC"
     2CFLAGS=-fPIC -Wall -O2 -pipe
     3
     4objects=idataclient.o stdsoap2.o soapC.o soapClient.o
    35
    46all: idataclient.so
    57
    6 idataclient.so: idataclient.o
    7         $(CC) $(CFLAGS) -shared -o idataclient.so idataclient.o
     8idataclient.so: $(objects)
     9        $(CC) $(CFLAGS) -shared -o idataclient.so $(objects)
    810
    9 idataclient.o: idataclient.c
    10         $(CC) $(CFLAGS) -c idataclient.c
     11$(objects): %.o : %.c
     12        $(CC) $(CFLAGS) -o $@ -c $<
     13
     14wsdl: idata.wsdl
     15        wsdl2h -c idata.wsdl
     16        soapcpp2 -c idata.h
     17
     18clean:
     19        $(RM) *.so *.o *.xml core
Note: See TracChangeset for help on using the changeset viewer.