first commit
This commit is contained in:
26
test/Makefile
Normal file
26
test/Makefile
Normal 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)
|
||||
Reference in New Issue
Block a user