initial load of upstream version 1.06.32
[xmlrpc-c] / lib / Makefile
1 ifeq ($(SRCDIR)x,x)
2 SRCDIR = $(CURDIR)/..
3 endif
4 SUBDIR = lib
5
6 include $(SRCDIR)/Makefile.config
7
8 # Build up SUBDIRS:
9 SUBDIRS = 
10 SUBDIRS += util libutil
11 ifeq ($(ENABLE_ABYSS_SERVER),yes)
12   SUBDIRS += abyss
13 endif
14 ifeq ($(MUST_BUILD_WININET_CLIENT),yes)
15   SUBDIRS += wininet_transport
16 endif
17 ifeq ($(MUST_BUILD_CURL_CLIENT),yes)
18   SUBDIRS += curl_transport
19 endif
20 ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
21   SUBDIRS += libwww_transport
22 endif
23 ifneq ($(ENABLE_LIBXML2_BACKEND),yes)
24   SUBDIRS += expat
25 endif
26
27 default: all
28
29 .PHONY: all clean distclean tags distdir intall check dep
30
31 all: $(SUBDIRS:%=%/all)
32
33 clean: $(SUBDIRS:%=%/clean) clean-common
34
35 distclean: $(SUBDIRS:%=%/distclean) distclean-common
36
37 tags: $(SUBDIRS:%=%/tags) TAGS
38
39 DISTFILES = 
40
41 distdir: distdir-common
42
43 install: $(SUBDIRS:%=%/install)
44
45 check:
46
47 dep: $(SUBDIRS:%=%/dep)
48
49 include $(SRCDIR)/Makefile.common
50
51
52