Annotation of sql/pgsql/libltdl/Makefile.am, revision 1.1
1.1 ! parser 1: ## Process this file with automake to produce Makefile.in
! 2:
! 3: AUTOMAKE_OPTIONS = no-dependencies foreign
! 4:
! 5: noinst_HEADERS = ltdl.h
! 6: noinst_LTLIBRARIES = libltdlc.la
! 7:
! 8: libltdlc_la_SOURCES = ltdl.c
! 9: libltdlc_la_LIBADD = $(LIBADD_DL)
! 10:
! 11: ## Because we do not have automatic dependency tracking:
! 12: ltdl.lo: ltdl.h config.h
! 13:
! 14: $(OBJECTS): libtool
! 15: libtool: $(LIBTOOL_DEPS)
! 16: $(SHELL) ./config.status --recheck
! 17:
! 18: ## This allows us to install libltdl without using ln and without creating
! 19: ## a world writeable directory.
! 20: ## FIXME: Remove this rule once automake can do this properly by itself.
! 21: local-install-files: $(DISTFILES)
! 22: -rm -rf $(DESTDIR)$(datadir)/libtool/libltdl
! 23: $(mkinstalldirs) $(DESTDIR)$(datadir)/libtool/libltdl
! 24: @for file in $(DISTFILES); do \
! 25: d=$(srcdir); \
! 26: if test -d $$d/$$file; then \
! 27: cp -r $$d/$$file $(DESTDIR)$(datadir)/libtool/libltdl/$$file; \
! 28: else \
! 29: test -f $(DESTDIR)$(datadir)/libtool/libltdl/$$file \
! 30: || cp $$d/$$file $(DESTDIR)$(datadir)/libtool/libltdl/$$file || :; \
! 31: fi; \
! 32: done
E-mail: