first commit

This commit is contained in:
2025-11-25 10:55:38 +07:00
commit 88ebdb465c
57 changed files with 9213 additions and 0 deletions

26
test/Makefile Normal file
View File

@@ -0,0 +1,26 @@
# makefile written for gnu make
CXX = /usr/local/gcc-3.1/bin/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
# Solaris: -lsocket -lnsl
SYSTEMLIBS =
LDLIBS = $(SYSTEMLIBS) $(LIB)
TESTS = HelloClient HelloServer TestBase64Client TestBase64Server TestValues TestXml Validator
all: $(TESTS)
$(TESTS): $(LIB)
clean:
rm -f *.o
rm -f $(TESTS)