initial load of upstream version 1.06.32
[xmlrpc-c] / tools / Makefile
1 SUBDIR=tools
2 ifeq ($(SRCDIR)x,x)
3 SRCDIR = $(CURDIR)/..
4 BUILDDIR = $(SRCDIR)
5 endif
6
7 include $(SRCDIR)/Makefile.config
8
9 SUBDIRS = binmode-rpc-kit turbocharger
10
11 ifeq ($(MUST_BUILD_CLIENT),yes)
12   SUBDIRS += xmlrpc xmlrpc_transport
13 endif
14
15 ifeq ($(ENABLE_CPLUSPLUS),yes)
16   SUBDIRS += xml-rpc-api2cpp
17 endif
18
19 .PHONY: all clean distclean install check dep
20
21 all: $(SUBDIRS:%=%/all)
22
23 clean: $(SUBDIRS:%=%/clean)
24
25 distclean: $(SUBDIRS:%=%/distclean)
26
27 install: $(SUBDIRS:%=%/install)
28
29 check:
30
31 dep: $(SUBDIRS:%=%/dep)
32
33 include $(SRCDIR)/Makefile.common