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

📄 makefile.am

📁 linux平台中
💻 AM
字号:
## Process this file with automake to create Makefile.inAUTOMAKE_OPTIONS = no-dependenciesSUBDIRS = intl po lib doc src tests m4 vms bootstrapEXTRA_DIST = TODO README README-alpha PATCHES.AC PATCHES.AM# We should be able to just define `ACLOCAL_AMFLAGS = --acdir=m4',# but this runs afoul of a bug in automake 1.# The following hack works around this bug by creating acinclude.m4 manually.ACLOCAL_AMFLAGS =M4DIR = $(srcdir)/m4ACINCLUDE_INPUTS = $(M4DIR)/decl.m4 $(M4DIR)/djgpp.m4 $(M4DIR)/dosfile.m4 \  $(M4DIR)/envsep.m4 $(M4DIR)/error.m4 $(M4DIR)/gettext.m4 $(M4DIR)/glibc.m4 \  $(M4DIR)/header.m4 $(M4DIR)/init.m4 $(M4DIR)/install.m4 \  $(M4DIR)/inttypes_h.m4 $(M4DIR)/isc-posix.m4 $(M4DIR)/largefile.m4 \  $(M4DIR)/lcmessage.m4 $(M4DIR)/malloc.m4 $(M4DIR)/mbstate_t.m4 \  $(M4DIR)/missing.m4 $(M4DIR)/progtest.m4 $(M4DIR)/realloc.m4 \  $(M4DIR)/regex.m4 $(M4DIR)/sanity.m4 $(M4DIR)/strerror_r.m4 \  $(M4DIR)/uintmax_t.m4 $(M4DIR)/ulonglong.m4 $(M4DIR)/xstrtoumax.m4$(srcdir)/acinclude.m4 : $(ACINCLUDE_INPUTS)	cat $(ACINCLUDE_INPUTS) >$(srcdir)/acinclude.m4# make cvs-clean blatantly stolen from KDE CVS ;)cvs-clean:	@if test ! -d CVS; then \	  echo "You don't have a toplevel CVS directory."; \	  echo "You most certainly didn't use cvs to get these sources."; \	  echo "But this function depends on cvs's information."; \	  exit 1 ;\	fi;\	pwd=`pwd` ;\	dirs=`find . -type d | grep -v CVS | sed -e "s#^./##"` ;\	for i in $$dirs; do \	  if test ! -d "$$pwd/$$i/CVS"; then \	    echo "D $$i" ;\	    rm -rf "$$pwd/$$i"; \	    continue; \	  fi ;\	  cd $$pwd/$$i ;\	  for f in * .*; do \	    if test ! -d "$$f"; then \	      if grep "^/$$f/" CVS/Entries > /dev/null; then \		a="b"; \	      else \	        echo "F $$i/$$f"; \		rm -f "$$pwd/$$i/$$f"; \	      fi; \	    fi ; \	  done; \	done

⌨️ 快捷键说明

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