From 922cb5559b9f2f97279fa24cc9c5862c8b666495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 8 Mar 2005 10:23:43 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r2603, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/iem/iemxmlrpc/; revision=2604 --- xmlrpc++/Makefile | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 xmlrpc++/Makefile (limited to 'xmlrpc++/Makefile') diff --git a/xmlrpc++/Makefile b/xmlrpc++/Makefile new file mode 100644 index 0000000..1c67616 --- /dev/null +++ b/xmlrpc++/Makefile @@ -0,0 +1,39 @@ +# modified by Christopher Frauenberger [frauenberger@iem.at] +# 25.8.2004 +# for the integration in iARS project + +# makefile written for gnu make +CXX = g++ +SRC = ./src +CPPFLAGS = -I$(SRC) +DEBUG = -g +OPTIMIZE = -O2 +GCCWARN = -Wall -Wstrict-prototypes +CXXFLAGS = $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES) + +LIB = ./libXmlRpc.a + +# Add your system-dependent network libs here. These are +# only used to build the tests (your application will need them too). +# Linux: none +# Solaris: -lsocket -lnsl +#SYSTEMLIBS = -lsocket -lnsl +SYSTEMLIBS = +LDLIBS = $(LIB) $(SYSTEMLIBS) + +OBJ = $(SRC)/XmlRpcClient.o $(SRC)/XmlRpcDispatch.o \ + $(SRC)/XmlRpcServer.o $(SRC)/XmlRpcServerConnection.o \ + $(SRC)/XmlRpcServerMethod.o $(SRC)/XmlRpcSocket.o $(SRC)/XmlRpcSource.o \ + $(SRC)/XmlRpcUtil.o $(SRC)/XmlRpcValue.o + +all: $(LIB) + +$(LIB): $(OBJ) + $(AR) $(ARFLAGS) $(LIB) $(OBJ) + + +clean: + rm -f $(SRC)/*.o + rm -f $(SRC)/*~ + rm -f $(LIB) + -- cgit v1.2.1