~ubuntu-branches/ubuntu/intrepid/gnunet/intrepid

« back to all changes in this revision

Viewing changes to src/util/boot/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-01-31 17:40:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080131174018-sfnbb8wv7p4nmut1
Tags: 0.7.3-2ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/rules:
    = Make use of code from cdbs' clean-la.mk file to clear the
      dependency_libs field in all .la files in the gnunet-dev package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
49
49
CONFIG_HEADER = $(top_builddir)/config.h
50
50
CONFIG_CLEAN_FILES =
51
 
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
52
 
am__vpath_adj = case $$p in \
53
 
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
54
 
    *) f=$$p;; \
55
 
  esac;
56
 
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
57
 
am__installdirs = "$(DESTDIR)$(libdir)"
58
 
libLTLIBRARIES_INSTALL = $(INSTALL)
59
 
LTLIBRARIES = $(lib_LTLIBRARIES)
60
 
libgnunetutil_boot_la_DEPENDENCIES =  \
61
 
        $(top_builddir)/src/util/libgnunetutil.la \
62
 
        $(top_builddir)/src/util/config_impl/libgnunetutil_config.la \
63
 
        $(top_builddir)/src/util/loggers/libgnunetutil_logging.la
64
 
am_libgnunetutil_boot_la_OBJECTS = startup.lo
65
 
libgnunetutil_boot_la_OBJECTS = $(am_libgnunetutil_boot_la_OBJECTS)
 
51
LTLIBRARIES = $(noinst_LTLIBRARIES)
 
52
libboot_la_LIBADD =
 
53
am_libboot_la_OBJECTS = startup.lo
 
54
libboot_la_OBJECTS = $(am_libboot_la_OBJECTS)
66
55
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
67
56
depcomp = $(SHELL) $(top_srcdir)/depcomp
68
57
am__depfiles_maybe = depfiles
75
64
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
76
65
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
77
66
        $(LDFLAGS) -o $@
78
 
SOURCES = $(libgnunetutil_boot_la_SOURCES)
79
 
DIST_SOURCES = $(libgnunetutil_boot_la_SOURCES)
 
67
SOURCES = $(libboot_la_SOURCES)
 
68
DIST_SOURCES = $(libboot_la_SOURCES)
80
69
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
81
70
        html-recursive info-recursive install-data-recursive \
82
71
        install-dvi-recursive install-exec-recursive \
110
99
CYGPATH_W = @CYGPATH_W@
111
100
DEFS = @DEFS@
112
101
DEPDIR = @DEPDIR@
 
102
DLLDIR = @DLLDIR@
113
103
DLLTOOL = @DLLTOOL@
114
104
ECHO = @ECHO@
115
105
ECHO_C = @ECHO_C@
144
134
LIBINTL = @LIBINTL@
145
135
LIBLTDL = @LIBLTDL@
146
136
LIBOBJS = @LIBOBJS@
 
137
LIBPREFIX = @LIBPREFIX@
147
138
LIBS = @LIBS@
148
139
LIBTOOL = @LIBTOOL@
149
140
LN_S = @LN_S@
169
160
PATH_SEPARATOR = @PATH_SEPARATOR@
170
161
PKG_CONFIG = @PKG_CONFIG@
171
162
POSUB = @POSUB@
 
163
QTINC = @QTINC@
 
164
QTLIBS = @QTLIBS@
172
165
RANLIB = @RANLIB@
173
166
SED = @SED@
174
167
SET_MAKE = @SET_MAKE@
179
172
USE_NLS = @USE_NLS@
180
173
VERSION = @VERSION@
181
174
XGETTEXT = @XGETTEXT@
 
175
XMKMF = @XMKMF@
182
176
XML2_CONFIG = @XML2_CONFIG@
183
177
XML_CPPFLAGS = @XML_CPPFLAGS@
184
178
XML_LIBS = @XML_LIBS@
 
179
X_CFLAGS = @X_CFLAGS@
 
180
X_EXTRA_LIBS = @X_EXTRA_LIBS@
 
181
X_LIBS = @X_LIBS@
 
182
X_PRE_LIBS = @X_PRE_LIBS@
185
183
_libcurl_config = @_libcurl_config@
186
184
abs_builddir = @abs_builddir@
187
185
abs_srcdir = @abs_srcdir@
200
198
build_alias = @build_alias@
201
199
build_cpu = @build_cpu@
202
200
build_os = @build_os@
 
201
build_target = @build_target@
203
202
build_vendor = @build_vendor@
204
203
builddir = @builddir@
205
204
datadir = @datadir@
237
236
top_srcdir = @top_srcdir@
238
237
INCLUDES = -I$(top_srcdir)/src/include
239
238
SUBDIRS = .
240
 
lib_LTLIBRARIES = \
241
 
  libgnunetutil_boot.la
 
239
noinst_LTLIBRARIES = \
 
240
  libboot.la
242
241
 
243
 
libgnunetutil_boot_la_SOURCES = \
 
242
libboot_la_SOURCES = \
244
243
  startup.c
245
244
 
246
 
libgnunetutil_boot_la_LIBADD = \
247
 
 $(top_builddir)/src/util/libgnunetutil.la \
248
 
 $(top_builddir)/src/util/config_impl/libgnunetutil_config.la \
249
 
 $(top_builddir)/src/util/loggers/libgnunetutil_logging.la 
250
 
 
251
245
all: all-recursive
252
246
 
253
247
.SUFFIXES:
281
275
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
282
276
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
283
277
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
284
 
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
285
 
        @$(NORMAL_INSTALL)
286
 
        test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
287
 
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
288
 
          if test -f $$p; then \
289
 
            f=$(am__strip_dir) \
290
 
            echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
291
 
            $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
292
 
          else :; fi; \
293
 
        done
294
 
 
295
 
uninstall-libLTLIBRARIES:
296
 
        @$(NORMAL_UNINSTALL)
297
 
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
298
 
          p=$(am__strip_dir) \
299
 
          echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
300
 
          $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
301
 
        done
302
 
 
303
 
clean-libLTLIBRARIES:
304
 
        -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
305
 
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
 
278
 
 
279
clean-noinstLTLIBRARIES:
 
280
        -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
 
281
        @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
306
282
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
307
283
          test "$$dir" != "$$p" || dir=.; \
308
284
          echo "rm -f \"$${dir}/so_locations\""; \
309
285
          rm -f "$${dir}/so_locations"; \
310
286
        done
311
 
libgnunetutil_boot.la: $(libgnunetutil_boot_la_OBJECTS) $(libgnunetutil_boot_la_DEPENDENCIES) 
312
 
        $(LINK) -rpath $(libdir) $(libgnunetutil_boot_la_OBJECTS) $(libgnunetutil_boot_la_LIBADD) $(LIBS)
 
287
libboot.la: $(libboot_la_OBJECTS) $(libboot_la_DEPENDENCIES) 
 
288
        $(LINK)  $(libboot_la_OBJECTS) $(libboot_la_LIBADD) $(LIBS)
313
289
 
314
290
mostlyclean-compile:
315
291
        -rm -f *.$(OBJEXT)
525
501
all-am: Makefile $(LTLIBRARIES)
526
502
installdirs: installdirs-recursive
527
503
installdirs-am:
528
 
        for dir in "$(DESTDIR)$(libdir)"; do \
529
 
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
530
 
        done
531
504
install: install-recursive
532
505
install-exec: install-exec-recursive
533
506
install-data: install-data-recursive
554
527
        @echo "it deletes files that may require special tools to rebuild."
555
528
clean: clean-recursive
556
529
 
557
 
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
 
530
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
558
531
        mostlyclean-am
559
532
 
560
533
distclean: distclean-recursive
577
550
 
578
551
install-dvi: install-dvi-recursive
579
552
 
580
 
install-exec-am: install-libLTLIBRARIES
 
553
install-exec-am:
581
554
 
582
555
install-html: install-html-recursive
583
556
 
609
582
 
610
583
ps-am:
611
584
 
612
 
uninstall-am: uninstall-libLTLIBRARIES
 
585
uninstall-am:
613
586
 
614
587
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
615
588
        install-strip
616
589
 
617
590
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
618
 
        all all-am check check-am clean clean-generic \
619
 
        clean-libLTLIBRARIES clean-libtool ctags ctags-recursive \
620
 
        distclean distclean-compile distclean-generic \
621
 
        distclean-libtool distclean-tags distdir dvi dvi-am html \
622
 
        html-am info info-am install install-am install-data \
623
 
        install-data-am install-dvi install-dvi-am install-exec \
624
 
        install-exec-am install-html install-html-am install-info \
625
 
        install-info-am install-libLTLIBRARIES install-man install-pdf \
626
 
        install-pdf-am install-ps install-ps-am install-strip \
627
 
        installcheck installcheck-am installdirs installdirs-am \
628
 
        maintainer-clean maintainer-clean-generic mostlyclean \
629
 
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
630
 
        pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
631
 
        uninstall-libLTLIBRARIES
 
591
        all all-am check check-am clean clean-generic clean-libtool \
 
592
        clean-noinstLTLIBRARIES ctags ctags-recursive distclean \
 
593
        distclean-compile distclean-generic distclean-libtool \
 
594
        distclean-tags distdir dvi dvi-am html html-am info info-am \
 
595
        install install-am install-data install-data-am install-dvi \
 
596
        install-dvi-am install-exec install-exec-am install-html \
 
597
        install-html-am install-info install-info-am install-man \
 
598
        install-pdf install-pdf-am install-ps install-ps-am \
 
599
        install-strip installcheck installcheck-am installdirs \
 
600
        installdirs-am maintainer-clean maintainer-clean-generic \
 
601
        mostlyclean mostlyclean-compile mostlyclean-generic \
 
602
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
 
603
        uninstall uninstall-am
632
604
 
633
605
# Tell versions [3.59,3.63) of GNU make to not export all variables.
634
606
# Otherwise a system limit (for SysV at least) may be exceeded.