You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
530 B
26 lines
530 B
# 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)
|
|
|