~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to libltdl/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
CLEANFILES = libltdl.la libltdlc.la
19
19
 
20
20
libltdl_la_SOURCES = ltdl.c
21
 
libltdl_la_LDFLAGS = -no-undefined -version-info 4:0:1
 
21
libltdl_la_LDFLAGS = -no-undefined -version-info 4:4:1
22
22
libltdl_la_LIBADD = $(LIBADD_DL)
23
23
 
24
24
libltdlc_la_SOURCES = ltdl.c
30
30
$(libltdl_la_OBJECTS) $(libltdlc_la_OBJECTS): libtool
31
31
libtool: $(LIBTOOL_DEPS)
32
32
        $(SHELL) ./config.status --recheck
33
 
 
34
 
## This allows us to install libltdl without using ln and without creating
35
 
## a world writeable directory.
36
 
## FIXME:  Remove this rule once automake can do this properly by itself.
37
 
local-install-files: $(DISTFILES)
38
 
        -rm -rf $(DESTDIR)$(datadir)/libtool/libltdl
39
 
        $(mkinstalldirs) $(DESTDIR)$(datadir)/libtool/libltdl
40
 
        @for file in $(DISTFILES); do \
41
 
          case $$file in \
42
 
            $(srcdir)/*) file=`echo "$$file" | sed "s|^$(srcdir)/||"`;; \
43
 
          esac; \
44
 
          d=$(srcdir); \
45
 
          if test -d $$d/$$file; then \
46
 
            cp -r $$d/$$file $(DESTDIR)$(datadir)/libtool/libltdl/$$file; \
47
 
          else \
48
 
            test -f $(DESTDIR)$(datadir)/libtool/libltdl/$$file \
49
 
            || cp $$d/$$file $(DESTDIR)$(datadir)/libtool/libltdl/$$file || :; \
50
 
          fi; \
51
 
        done