This commit is contained in:
Ivan
2022-04-05 11:42:28 +03:00
commit 6dc0eb0fcf
5565 changed files with 1200500 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# makefile written for gnu make
CXX = g++
SRC = ../src
CPPFLAGS = -I$(SRC)
DEBUG = -g
#OPTIMIZE = -O2
GCCWARN = -Wall
CXXFLAGS = $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES)
LIB = ../libXmlRpc.a
# Add your system-dependent network libs here
# Solaris: -lsocket -lnsl
SYSTEMLIBS =
LDLIBS = $(SYSTEMLIBS) $(LIB)
TESTS = HelloClient HelloServer TestBase64Client TestBase64Server TestValues TestXml Validator port_zero_server bool_test
all: $(TESTS)
$(TESTS): $(LIB)
clean:
rm -f *.o
rm -f $(TESTS)