Ignore:
Timestamp:
2008-05-15T13:23:36+12:00 (16 years ago)
Author:
mdewsnip
Message:

Now generates a gsdlprotocol.a file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/protocol/Makefile.in

    r15475 r15479  
    3030
    3131
     32AR = ar
    3233CPP = @CXX@
    3334CPPFLAGS = @CXXFLAGS@
     
    3536# Do NOT add the "recpt" directory here: the protocol should be independent of the receptionist!
    3637INCLUDES = -I. -I$(GSDL_DIR) -I$(GSDL_DIR)/lib -I$(COLSERVR_DIR) -I$(INDEXERS_DIR)/mgpp/text
     38RANLIB = @RANLIB@
    3739
    3840
     
    5557    recptproto.o
    5658
     59LIBRARY = gsdlprotocol.a
    5760
    58 all: $(OBJECTS)
    5961
    60 install:
     62gsdlprotocol.a: $(OBJECTS)
     63    rm -f gsdlprotocol.a
     64    $(AR) cru gsdlprotocol.a $(OBJECTS)
     65    $(RANLIB) gsdlprotocol.a
     66
     67all: $(LIBRARY)
     68
     69install: $(LIBRARY)
    6170
    6271clean:
Note: See TracChangeset for help on using the changeset viewer.