Changeset 15577


Ignore:
Timestamp:
2008-05-19T15:25:19+12:00 (16 years ago)
Author:
mdewsnip
Message:

Now generates a gsdlrecpt.a library, for use with the corba stuff and also to be consistent with the Windows makefile.

File:
1 edited

Legend:

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

    r15572 r15577  
    6363
    6464
     65AR = ar
    6566CC = @CC@
    6667CFLAGS=@CFLAGS@ @COMPAT32BITFLAGS@
     
    7677LIBS = @LIBS@ @GDBM_LIBPATH@ -lgdbm -L$(PACKAGES_DIR)/expat/lib -lexpat $(ACCENTFOLD_LIBS) \
    7778    $(FASTCGI_LIBS) $(Z3950_LIBS)
     79RANLIB = @RANLIB@
    7880
    7981
     
    174176    wizardaction.o
    175177
     178LIBRARY = gsdlrecpt.a
     179
    176180GSDL_LIBS = \
    177181    $(PROTOCOL_DIR)/gsdlprotocol.a \
     
    190194
    191195
     196gsdlrecpt.a: $(OBJECTS)
     197    rm -f gsdlrecpt.a
     198    $(AR) cru gsdlrecpt.a $(OBJECTS)
     199    $(RANLIB) gsdlrecpt.a
     200
    192201library: $(EXECUTABLE_OBJECTS)
    193202    $(CXXLINK) $(EXECUTABLE_OBJECTS) $(LIBS)
    194203
    195 all: $(EXECUTABLE)
     204all: $(LIBRARY) $(EXECUTABLE)
    196205
    197206install: $(EXECUTABLE)
Note: See TracChangeset for help on using the changeset viewer.