makefile.am

来自「Small Device C Compiler 面向Inter8051」· AM 代码 · 共 49 行

AM
49
字号
## Process this file with automake to produce Makefile.inAUTOMAKE_OPTIONS = no-dependencies foreignif INSTALL_LTDLinclude_HEADERS = ltdl.hlib_LTLIBRARIES = libltdl.laelsenoinst_HEADERS = ltdl.hendifif CONVENIENCE_LTDLnoinst_LTLIBRARIES = libltdlc.laendif## Make sure these will be cleaned even when they're not built by## default.CLEANFILES = libltdl.la libltdlc.lalibltdl_la_SOURCES = ltdl.clibltdl_la_LDFLAGS = -no-undefined -version-info 4:0:1libltdl_la_LIBADD = $(LIBADD_DL)libltdlc_la_SOURCES = ltdl.clibltdlc_la_LIBADD = $(LIBADD_DL)## Because we do not have automatic dependency tracking:ltdl.lo: ltdl.h config.h$(OBJECTS) $(libltdl_la_OBJECTS) $(libltdlc_la_OBJECTS): libtoollibtool: $(LIBTOOL_DEPS)	$(SHELL) ./config.status --recheck## This allows us to install libltdl without using ln and without creating## a world writeable directory.## FIXME:  Remove this rule once automake can do this properly by itself.local-install-files: $(DISTFILES)	-rm -rf $(DESTDIR)$(datadir)/libtool/libltdl	$(mkinstalldirs) $(DESTDIR)$(datadir)/libtool/libltdl	@for file in $(DISTFILES); do \	  d=$(srcdir); \	  if test -d $$d/$$file; then \	    cp -r $$d/$$file $(DESTDIR)$(datadir)/libtool/libltdl/$$file; \	  else \	    test -f $(DESTDIR)$(datadir)/libtool/libltdl/$$file \	    || cp $$d/$$file $(DESTDIR)$(datadir)/libtool/libltdl/$$file || :; \	  fi; \	done

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?