⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 mutt-1.5.12 源代码。linux 下邮件接受的工具。
💻 IN
📖 第 1 页 / 共 3 页
字号:
GTAGS:	here=`$(am__cd) $(top_builddir) && pwd` \	  && cd $(top_srcdir) \	  && gtags -i $(GTAGS_ARGS) $$heredistclean-tags:	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tagsdistdir: $(DISTFILES)	$(am__remove_distdir)	mkdir $(distdir)	$(mkdir_p) $(distdir)/. $(distdir)/contrib $(distdir)/doc $(distdir)/intl $(distdir)/m4 $(distdir)/po	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \	list='$(DISTFILES)'; for file in $$list; do \	  case $$file in \	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \	  esac; \	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \	    dir="/$$dir"; \	    $(mkdir_p) "$(distdir)$$dir"; \	  else \	    dir=''; \	  fi; \	  if test -d $$d/$$file; then \	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \	    fi; \	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \	  else \	    test -f $(distdir)/$$file \	    || cp -p $$d/$$file $(distdir)/$$file \	    || exit 1; \	  fi; \	done	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \	  if test "$$subdir" = .; then :; else \	    test -d "$(distdir)/$$subdir" \	    || $(mkdir_p) "$(distdir)/$$subdir" \	    || exit 1; \	    distdir=`$(am__cd) $(distdir) && pwd`; \	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \	    (cd $$subdir && \	      $(MAKE) $(AM_MAKEFLAGS) \	        top_distdir="$$top_distdir" \	        distdir="$$distdir/$$subdir" \	        distdir) \	      || exit 1; \	  fi; \	done	$(MAKE) $(AM_MAKEFLAGS) \	  top_distdir="$(top_distdir)" distdir="$(distdir)" \	  dist-hook	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \	|| chmod -R a+r $(distdir)dist-gzip: distdir	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz	$(am__remove_distdir)dist-bzip2: distdir	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2	$(am__remove_distdir)dist-tarZ: distdir	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z	$(am__remove_distdir)dist-shar: distdir	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz	$(am__remove_distdir)dist-zip: distdir	-rm -f $(distdir).zip	zip -rq $(distdir).zip $(distdir)	$(am__remove_distdir)dist dist-all: distdir	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz	$(am__remove_distdir)# This target untars the dist file and tries a VPATH configuration.  Then# it guarantees that the distribution is self-contained by making another# tarfile.distcheck: dist	case '$(DIST_ARCHIVES)' in \	*.tar.gz*) \	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\	*.tar.bz2*) \	  bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\	*.tar.Z*) \	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\	*.shar.gz*) \	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\	*.zip*) \	  unzip $(distdir).zip ;;\	esac	chmod -R a-w $(distdir); chmod a+w $(distdir)	mkdir $(distdir)/_build	mkdir $(distdir)/_inst	chmod a-w $(distdir)	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \	  && cd $(distdir)/_build \	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \	    $(DISTCHECK_CONFIGURE_FLAGS) \	  && $(MAKE) $(AM_MAKEFLAGS) \	  && $(MAKE) $(AM_MAKEFLAGS) dvi \	  && $(MAKE) $(AM_MAKEFLAGS) check \	  && $(MAKE) $(AM_MAKEFLAGS) install \	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \	        distuninstallcheck \	  && chmod -R a-w "$$dc_install_base" \	  && ({ \	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \	      } || { rm -rf "$$dc_destdir"; exit 1; }) \	  && rm -rf "$$dc_destdir" \	  && $(MAKE) $(AM_MAKEFLAGS) dist \	  && rm -rf $(DIST_ARCHIVES) \	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck	$(am__remove_distdir)	@(echo "$(distdir) archives ready for distribution: "; \	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \	  sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'distuninstallcheck:	@cd $(distuninstallcheck_dir) \	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \	   || { echo "ERROR: files left after uninstall:" ; \	        if test -n "$(DESTDIR)"; then \	          echo "  (check DESTDIR support)"; \	        fi ; \	        $(distuninstallcheck_listfiles) ; \	        exit 1; } >&2distcleancheck: distclean	@if test '$(srcdir)' = . ; then \	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \	  exit 1 ; \	fi	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \	  || { echo "ERROR: files left in build directory after distclean:" ; \	       $(distcleancheck_listfiles) ; \	       exit 1; } >&2check-am: all-amcheck: $(BUILT_SOURCES)	$(MAKE) $(AM_MAKEFLAGS) check-recursiveall-am: Makefile $(PROGRAMS) $(SCRIPTS) config.hinstalldirs: installdirs-recursiveinstalldirs-am:	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \	  test -z "$$dir" || $(mkdir_p) "$$dir"; \	doneinstall: $(BUILT_SOURCES)	$(MAKE) $(AM_MAKEFLAGS) install-recursiveinstall-exec: install-exec-recursiveinstall-data: install-data-recursiveuninstall: uninstall-recursiveinstall-am: all-am	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-aminstallcheck: installcheck-recursiveinstall-strip:	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \	  `test -z '$(STRIP)' || \	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` installmostlyclean-generic:clean-generic:	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)distclean-generic:	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)maintainer-clean-generic:	@echo "This command is intended for maintainers to use"	@echo "it deletes files that may require special tools to rebuild."	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)clean: clean-recursiveclean-am: clean-binPROGRAMS clean-generic mostlyclean-amdistclean: distclean-recursive	-rm -f $(am__CONFIG_DISTCLEAN_FILES)	-rm -rf $(DEPDIR) ./$(DEPDIR)	-rm -f Makefiledistclean-am: clean-am distclean-compile distclean-generic \	distclean-hdr distclean-tagsdvi: dvi-recursivedvi-am:html: html-recursiveinfo: info-recursiveinfo-am:install-data-am: install-data-localinstall-exec-am: install-binPROGRAMS install-binSCRIPTS	@$(NORMAL_INSTALL)	$(MAKE) $(AM_MAKEFLAGS) install-exec-hookinstall-info: install-info-recursiveinstall-man:installcheck-am:maintainer-clean: maintainer-clean-recursive	-rm -f $(am__CONFIG_DISTCLEAN_FILES)	-rm -rf $(top_srcdir)/autom4te.cache	-rm -rf $(DEPDIR) ./$(DEPDIR)	-rm -f Makefilemaintainer-clean-am: distclean-am maintainer-clean-genericmostlyclean: mostlyclean-recursivemostlyclean-am: mostlyclean-compile mostlyclean-genericpdf: pdf-recursivepdf-am:ps: ps-recursiveps-am:uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \	uninstall-info-amuninstall-info: uninstall-info-recursive.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \	check-am clean clean-binPROGRAMS clean-generic clean-recursive \	ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \	dist-hook dist-shar dist-tarZ dist-zip distcheck distclean \	distclean-compile distclean-generic distclean-hdr \	distclean-recursive distclean-tags distcleancheck distdir \	distuninstallcheck dvi dvi-am html html-am info info-am \	install install-am install-binPROGRAMS install-binSCRIPTS \	install-data install-data-am install-data-local install-exec \	install-exec-am install-exec-hook install-info install-info-am \	install-man install-strip installcheck installcheck-am \	installdirs installdirs-am maintainer-clean \	maintainer-clean-generic maintainer-clean-recursive \	mostlyclean mostlyclean-compile mostlyclean-generic \	mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \	uninstall uninstall-am uninstall-binPROGRAMS \	uninstall-binSCRIPTS uninstall-info-ammutt_dotlock.c: dotlock.c	cp $(srcdir)/dotlock.c mutt_dotlock.cflea:	muttbug.sh	cp muttbug.sh flea	chmod +x fleasmime_keys: $(srcdir)/smime_keys.pl	cp $(srcdir)/smime_keys.pl smime_keys	chmod +x smime_keysMakefile: $(BUILT_SOURCES)keymap_defs.h: $(OPS) $(srcdir)/gen_defs	$(srcdir)/gen_defs $(OPS) > keymap_defs.hkeymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs	$(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.PGP \		$(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME \			> $(srcdir)/keymap_alldefs.hreldate.h: $(srcdir)/ChangeLog	echo 'const char *ReleaseDate = "'`head -n 1 $(srcdir)/ChangeLog | LC_ALL=C cut -d ' ' -f 1`'";' > reldate.hpatchlist.c: $(srcdir)/PATCHES $(srcdir)/patchlist.sh	$(srcdir)/patchlist.sh < $(srcdir)/PATCHES > patchlist.cinstall-exec-hook:	if test -f $(DESTDIR)$(bindir)/mutt.dotlock && test -f $(DESTDIR)$(bindir)/mutt_dotlock ; then	\		rm -f $(DESTDIR)$(bindir)/mutt.dotlock ;		\		ln -sf $(DESTDIR)$(bindir)/mutt_dotlock $(DESTDIR)$(bindir)/mutt.dotlock ; \	fi	if test -f $(DESTDIR)$(bindir)/mutt_dotlock && test x@DOTLOCK_GROUP@ != x ; then \		chgrp @DOTLOCK_GROUP@ $(DESTDIR)$(bindir)/mutt_dotlock && \		chmod @DOTLOCK_PERMISSION@ $(DESTDIR)$(bindir)/mutt_dotlock || \		{ echo "Can't fix mutt_dotlock's permissions!" >&2 ; exit 1 ; } \	fiinstall-data-local: Muttrc	$(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir)	-if [ -f $(DESTDIR)$(pkgdatadir)/Muttrc ] ; then \		mv $(DESTDIR)$(pkgdatadir)/Muttrc* $(DESTDIR)$(sysconfdir) ; \	elif [ -f $(DESTDIR)$(pkgdatadir)/../Muttrc ] ; then \	 	mv $(DESTDIR)$(pkgdatadir)/../Muttrc* $(DESTDIR)$(sysconfdir) ; \	elif [ ! -f $(DESTDIR)$(sysconfdir)/Muttrc ] ; then \		$(INSTALL) -m 644 Muttrc $(DESTDIR)$(sysconfdir) ; \	fi	-if [ ! -f $(DESTDIR)$(sysconfdir)/mime.types ]; then \		$(INSTALL) -m 644 $(srcdir)/mime.types $(DESTDIR)$(sysconfdir); \	fi# Don't make this one ChangeLog - it's intended to be# used manually.pclean:	cat /dev/null > $(top_srcdir)/PATCHEScheck-security:	(cd $(top_srcdir) && ./check_sec.sh)commit-real:	(cd $(top_srcdir) && cvs commit)commit-changelog:	(cd $(top_srcdir) && cvs commit -m "# changelog commit" ChangeLog)commit: pclean check-security commit-real update-changelog commit-changelogupdate-changelog:	(cd $(top_srcdir); \	cvs update ChangeLog; \	sh ./mkchangelog.sh | fmt -c | cat  - ChangeLog > ChangeLog.$$$$ && mv ChangeLog.$$$$ ChangeLog; \	$${VISUAL:-vi} ChangeLog)# kluge around automake problems.dist-hook:	-for file in $(BUILT_SOURCES) ; do rm -f $(distdir)/$$file ; donemutt-dist:	(cd $(srcdir) && ./build-release )update-doc: stamp-doc-rc	(cd doc && $(MAKE) update-doc)Muttrc: stamp-doc-rcstamp-doc-rc: $(srcdir)/init.h makedoc Muttrc.head	-rm -f Muttrc stamp-doc-rc	$(CPP) $(INCLUDES) $(DEFS) $(CPPFLAGS) -D_MAKEDOC -C \		$(srcdir)/init.h | ./makedoc -c | cat Muttrc.head - > Muttrc	touch stamp-doc-rc.PHONY: commit pclean check-security commit-real commit-changelog# .PHONY: changelog ChangeLog# Tell versions [3.59,3.63) of GNU make to not export all variables.# Otherwise a system limit (for SysV at least) may be exceeded..NOEXPORT:

⌨️ 快捷键说明

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