aboutsummaryrefslogtreecommitdiff
path: root/xmlrpc++/Makefile
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-08 10:23:43 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-08 10:23:43 +0000
commit922cb5559b9f2f97279fa24cc9c5862c8b666495 (patch)
tree10b3616acd63f3d60689c1a26aa4ccadf6115511 /xmlrpc++/Makefile
This commit was generated by cvs2svn to compensate for changes in r2603,svn2git-root
which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/iem/iemxmlrpc/; revision=2604
Diffstat (limited to 'xmlrpc++/Makefile')
-rw-r--r--xmlrpc++/Makefile39
1 files changed, 39 insertions, 0 deletions
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)
+