📄 makefile.in
字号:
done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$uniquetags: TAGSTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fictags: CTAGSCTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$uniqueGTAGS: 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) $(mkdir_p) $(distdir)/../config @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; \ donecheck-am: all-amcheck: check-amall-am: Makefile $(HEADERS)installdirs: for dir in "$(DESTDIR)$(includedir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ doneinstall: install-aminstall-exec: install-exec-aminstall-data: install-data-amuninstall: uninstall-aminstall-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-aminstallcheck: installcheck-aminstall-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: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."clean: clean-amclean-am: clean-generic clean-local mostlyclean-amdistclean: distclean-am -rm -f Makefiledistclean-am: clean-am distclean-generic distclean-tagsdvi: dvi-amdvi-am:html: html-aminfo: info-aminfo-am:install-data-am: install-includeHEADERSinstall-exec-am:install-info: install-info-aminstall-man:installcheck-am:maintainer-clean: maintainer-clean-am -rm -f Makefilemaintainer-clean-am: distclean-am maintainer-clean-genericmostlyclean: mostlyclean-ammostlyclean-am: mostlyclean-genericpdf: pdf-ampdf-am:ps: ps-amps-am:uninstall-am: uninstall-includeHEADERS uninstall-info-am.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-local ctags distclean distclean-generic distclean-tags \ distdir dvi dvi-am html html-am info info-am install \ install-am install-data install-data-am install-exec \ install-exec-am install-includeHEADERS install-info \ install-info-am install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-includeHEADERS uninstall-info-amcleanautoconf: rm -f Makefile.in if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do cd $$i; $(MAKE) cleanautoconf; done \ fi rm -f Makefile.bak mv Makefile Makefile.bak.PHONY: cleanautoconf# This creates a nicely formatted list of all header fileshdrs.txt: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) hdrs.txt); \ done; \ fi (cd $(srcdir); \ rm -f tmp; \ hdrs=`ls *.h 2>/dev/null`; \ if test -n "$$hdrs"; then \ echo " " $$hdrs | fmt -w 60 >tmp; \ sed 's/$$/ \\/' <tmp | sed '$$s/\\//'>hdrs.txt; \ rm tmp; \ fi)# This creates a nicely formatted list of all C++ source filescxxsrcs.txt: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) cxxsrcs.txt); \ done; \ fi (cd $(srcdir); \ rm -f tmp; \ cxxsrcs=`ls *.cxx 2>/dev/null`; \ if test -n "$$cxxsrcs"; then \ echo " " $$cxxsrcs | fmt -w 60 >tmp; \ sed 's/$$/ \\/' <tmp | sed '$$s/\\//'>cxxsrcs.txt; \ rm tmp; \ fi)cppsrcs.txt: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) cppsrcs.txt); \ done; \ fi (cd $(srcdir); \ rm -f tmp; \ cppsrcs=`ls *.cpp 2>/dev/null`; \ if test -n "$$cppsrcs"; then \ echo " " $$cppsrcs | fmt -w 60 >tmp; \ sed 's/$$/ \\/' <tmp | sed '$$s/\\//'>cppsrcs.txt; \ rm tmp; \ fi)# This creates a nicely formatted list of all files with # suffixes in DIST_SUFFIXESdistfiles.txt: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) distfiles.txt); \ done; \ fi (cd $(srcdir); \ rm -f tmp; \ if test -n "$(DIST_FILES)"; then \ echo " " $(DIST_FILES) | fmt -w 60 >>tmp; \ fi; \ if test -n "$(DIST_SUFFIXES)"; then \ for i in $(DIST_SUFFIXES); do \ hassuffix=`ls *$$i 2>/dev/null`; \ if test -n "$$hassuffix"; then \ echo " " *$$i | fmt -w 60 >>tmp; \ fi; \ done; \ fi; \ if test -n "$(H5TESTS)"; then \ for i in $(H5TESTS); do \ echo " " $${i}_accepted/*.h5 | fmt -w 60 >>tmp; \ done; \ fi; \ if test -n "$(NODIST_FILES)" -a -f tmp; then \ for i in $(NODIST_FILES); do \ mv tmp tmp1; \ sed "s/$$i//" <tmp1 >>tmp; \ done; \ rm tmp1; \ fi; \ if test -f tmp; then \ sed 's/$$/ \\/' <tmp | sed '$$s/\\//' >distfiles.txt; \ rm tmp; \ fi; \ )makefilefiles: hdrs.txt cppsrcs.txt cxxsrcs.txt distfiles.txtupdatemakefile.am: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) updatemakefile.am); \ done; \ fi (cd $(srcdir); \ $(top_srcdir)/config/updatemfs.sh )# This creates a nicely formatted list of all header filesmakefile.hdrs: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) makefile.hdrs); \ done; \ fi (cd $(srcdir); \ rm -f tmp; \ hdrs=`ls *.h 2>/dev/null`; \ if test -n "$$hdrs"; then \ echo "HDR_FILES = " $$hdrs | fmt -w 60 >tmp; \ sed 's/$$/ \\/' <tmp | sed '$$s/\\//'>Makefile.hdrs; \ rm tmp; \ fi)# This creates a nicely formatted list of all files with # suffixes in DIST_SUFFIXESmakefile.dist: if test -n "$(SUBDIRS)"; then \ for i in $(SUBDIRS); do \ (cd $$i; $(MAKE) makefile.dist); \ done; \ fi (cd $(srcdir); \ rm -f tmp; \ if test -n "$(DIST_FILES)"; then \ echo "EXTRA_DIST_FILES = " $(DIST_FILES) | fmt -w 60 >>tmp; \ fi; \ if test -n "$(DIST_SUFFIXES)"; then \ for i in $(DIST_SUFFIXES); do \ echo " " *$$i | fmt -w 60 >>tmp; \ done; \ fi; \ if test -n "$(NODIST_FILES)" -a -f tmp; then \ mv tmp tmp1; \ for i in $(NODIST_FILES); do \ sed "s/$$i//" <tmp1 >>tmp; \ done; \ rm tmp1; \ fi; \ if test -f tmp; then \ sed 's/$$/ \\/' <tmp | sed '$$s/\\//'>>Makefile.dist; \ rm tmp; \ fi; \ )clean-local: clean-makefilefilesclean-makefilefiles: (cd $(srcdir); \ rm -f hdrs.txt cppsrcs.txt cxxsrcs.txt distfiles.txt).PHONY: hdrs.txt cppsrcs.txt cxxsrcs.txt distfiles.txt .PHONY: clean-makefilefiles updatemakefile.am.PHONY: makefile.dist makefile.hdrs# 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 + -