~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to libguestlib/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-07-30 12:56:49 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730125649-97sfj5li8axiseoo
Tags: 2009.07.22-179896-2
* Temporarily building without dumbnet, the recently uploaded
  new dumbnet upstream version broke down (Closes: #539006).
* Using more common name to store local debian additions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
32
32
################################################################################
33
33
 
 
34
 
 
35
 
34
36
VPATH = @srcdir@
35
37
pkgdatadir = $(datadir)/@PACKAGE@
36
38
pkglibdir = $(libdir)/@PACKAGE@
50
52
build_triplet = @build@
51
53
host_triplet = @host@
52
54
subdir = libguestlib
53
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING
 
55
DIST_COMMON = $(libguestlib_include_HEADERS) $(srcdir)/Makefile.am \
 
56
        $(srcdir)/Makefile.in $(srcdir)/vmguestlib.pc.in COPYING
54
57
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
55
58
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
56
59
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
59
62
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
60
63
        $(ACLOCAL_M4)
61
64
mkinstalldirs = $(install_sh) -d
62
 
CONFIG_CLEAN_FILES =
 
65
CONFIG_CLEAN_FILES = vmguestlib.pc
63
66
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
64
67
am__vpath_adj = case $$p in \
65
68
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
66
69
    *) f=$$p;; \
67
70
  esac;
68
71
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
69
 
am__installdirs = "$(DESTDIR)$(libdir)"
 
72
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
 
73
        "$(DESTDIR)$(libguestlib_includedir)"
70
74
libLTLIBRARIES_INSTALL = $(INSTALL)
71
75
LTLIBRARIES = $(lib_LTLIBRARIES)
72
76
libguestlib_la_DEPENDENCIES =
89
93
        $(LDFLAGS) -o $@
90
94
SOURCES = $(libguestlib_la_SOURCES)
91
95
DIST_SOURCES = $(libguestlib_la_SOURCES)
 
96
pkgconfigDATA_INSTALL = $(INSTALL_DATA)
 
97
DATA = $(pkgconfig_DATA)
 
98
libguestlib_includeHEADERS_INSTALL = $(INSTALL_HEADER)
 
99
HEADERS = $(libguestlib_include_HEADERS)
92
100
ETAGS = etags
93
101
CTAGS = ctags
94
102
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
282
290
# We require GCC, so we're fine passing compiler-specific flags.
283
291
# Needed for OS's that don't link shared libraries against libc by default, e.g. FreeBSD
284
292
libguestlib_la_LDFLAGS = -Wl,-lc
 
293
libguestlib_includedir = $(includedir)/vmGuestLib
 
294
libguestlib_include_HEADERS =  \
 
295
        $(top_srcdir)/lib/include/includeCheck.h \
 
296
        $(top_srcdir)/lib/include/vmGuestLib.h \
 
297
        $(top_srcdir)/lib/include/vmSessionId.h \
 
298
        $(top_srcdir)/lib/include/vm_basic_types.h
 
299
EXTRA_DIST = vmguestlib.pc.in
 
300
pkgconfigdir = $(libdir)/pkgconfig
 
301
pkgconfig_DATA = vmguestlib.pc
285
302
all: all-am
286
303
 
287
304
.SUFFIXES:
315
332
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
316
333
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
317
334
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
335
vmguestlib.pc: $(top_builddir)/config.status $(srcdir)/vmguestlib.pc.in
 
336
        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
318
337
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
319
338
        @$(NORMAL_INSTALL)
320
339
        test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
379
398
 
380
399
clean-libtool:
381
400
        -rm -rf .libs _libs
 
401
install-pkgconfigDATA: $(pkgconfig_DATA)
 
402
        @$(NORMAL_INSTALL)
 
403
        test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
 
404
        @list='$(pkgconfig_DATA)'; for p in $$list; do \
 
405
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
406
          f=$(am__strip_dir) \
 
407
          echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
 
408
          $(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \
 
409
        done
 
410
 
 
411
uninstall-pkgconfigDATA:
 
412
        @$(NORMAL_UNINSTALL)
 
413
        @list='$(pkgconfig_DATA)'; for p in $$list; do \
 
414
          f=$(am__strip_dir) \
 
415
          echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
 
416
          rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \
 
417
        done
 
418
install-libguestlib_includeHEADERS: $(libguestlib_include_HEADERS)
 
419
        @$(NORMAL_INSTALL)
 
420
        test -z "$(libguestlib_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libguestlib_includedir)"
 
421
        @list='$(libguestlib_include_HEADERS)'; for p in $$list; do \
 
422
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
423
          f=$(am__strip_dir) \
 
424
          echo " $(libguestlib_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libguestlib_includedir)/$$f'"; \
 
425
          $(libguestlib_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libguestlib_includedir)/$$f"; \
 
426
        done
 
427
 
 
428
uninstall-libguestlib_includeHEADERS:
 
429
        @$(NORMAL_UNINSTALL)
 
430
        @list='$(libguestlib_include_HEADERS)'; for p in $$list; do \
 
431
          f=$(am__strip_dir) \
 
432
          echo " rm -f '$(DESTDIR)$(libguestlib_includedir)/$$f'"; \
 
433
          rm -f "$(DESTDIR)$(libguestlib_includedir)/$$f"; \
 
434
        done
382
435
 
383
436
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
384
437
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
456
509
        done
457
510
check-am: all-am
458
511
check: check-am
459
 
all-am: Makefile $(LTLIBRARIES)
 
512
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
460
513
installdirs:
461
 
        for dir in "$(DESTDIR)$(libdir)"; do \
 
514
        for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libguestlib_includedir)"; do \
462
515
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
463
516
        done
464
517
install: install-am
506
559
 
507
560
info-am:
508
561
 
509
 
install-data-am:
 
562
install-data-am: install-libguestlib_includeHEADERS \
 
563
        install-pkgconfigDATA
510
564
 
511
565
install-dvi: install-dvi-am
512
566
 
542
596
 
543
597
ps-am:
544
598
 
545
 
uninstall-am: uninstall-libLTLIBRARIES
 
599
uninstall-am: uninstall-libLTLIBRARIES \
 
600
        uninstall-libguestlib_includeHEADERS uninstall-pkgconfigDATA
546
601
 
547
602
.MAKE: install-am install-strip
548
603
 
553
608
        install install-am install-data install-data-am install-dvi \
554
609
        install-dvi-am install-exec install-exec-am install-html \
555
610
        install-html-am install-info install-info-am \
556
 
        install-libLTLIBRARIES install-man install-pdf install-pdf-am \
 
611
        install-libLTLIBRARIES install-libguestlib_includeHEADERS \
 
612
        install-man install-pdf install-pdf-am install-pkgconfigDATA \
557
613
        install-ps install-ps-am install-strip installcheck \
558
614
        installcheck-am installdirs maintainer-clean \
559
615
        maintainer-clean-generic mostlyclean mostlyclean-compile \
560
616
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
561
 
        tags uninstall uninstall-am uninstall-libLTLIBRARIES
562
 
 
 
617
        tags uninstall uninstall-am uninstall-libLTLIBRARIES \
 
618
        uninstall-libguestlib_includeHEADERS uninstall-pkgconfigDATA
 
619
 
 
620
 
 
621
$(pkgconfig_DATA): $(top_builddir)/config.status
563
622
# Tell versions [3.59,3.63) of GNU make to not export all variables.
564
623
# Otherwise a system limit (for SysV at least) may be exceeded.
565
624
.NOEXPORT: