~ubuntu-branches/ubuntu/natty/xmlrpc-c/natty

« back to all changes in this revision

Viewing changes to tools/Makefile.common

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-01-06 18:56:02 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110106185602-09og2x3suqlzbf6s
Tags: 1.16.32-0ubuntu1
* New upstream version (stable release). LP: #659591.
  - No unresolved symbols in the shared libraries. LP: #690779.
  - Builds with --no-add-needed and --as-needed.
* Rename shared library packages.
* Add symbols files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*-makefile-*-    <-- an Emacs control
2
 
 
3
 
CLIENT_LDLIBS = -L$(BUILDDIR)/src/.libs -lxmlrpc_client -lxmlrpc
4
 
 
5
 
ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
6
 
  CLIENT_LDLIBS += $(shell libwww-config --libs)
7
 
endif
8
 
ifeq ($(MUST_BUILD_CURL_CLIENT),yes)
9
 
  CLIENT_LDLIBS += $(shell curl-config --libs)
10
 
endif
11
 
ifeq ($(MUST_BUILD_WININET_CLIENT),yes)
12
 
  CLIENT_LDLIBS += $(shell wininet-config --libs)
13
 
endif
14
 
 
15
 
CLIENT_LDLIBS += $(LDLIBS_XML)
16
 
 
17
 
CLIENT_LDLIBS += -L$(BUILDDIR)/lib/libutil/.libs -lxmlrpc_util
18
 
 
19
 
 
20
 
UTIL_DIR = $(BUILDDIR)/lib/util
21
 
 
22
 
BUILDABLE_UTILS = cmdline_parser.o getoptx.o
23
 
 
24
 
$(BUILDABLE_UTILS:%=$(UTIL_DIR)/%): FORCE
25
 
        $(MAKE) -C $(dir $@) $(notdir $@)
26
 
 
27
 
include $(SRCDIR)/Makefile.common
28
 
 
29
 
.PHONY: install
30
 
install: install-common
31
 
 
32
 
.PHONY: check
33
 
check:
34
 
 
35
 
.PHONY: FORCE
36
 
FORCE: