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

📄 makefile.in

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 IN
📖 第 1 页 / 共 2 页
字号:
ETAGS = etagsETAGSFLAGS =CTAGS = ctagsCTAGSFLAGS =tags: TAGSID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)	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; }'`; \	mkid -fID $$uniqueTAGS:  $(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 "$(ETAGS_ARGS)$$tags$$unique" \	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \	     $$tags $$uniquectags: 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 tagsDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)top_distdir = .distdir = $(PACKAGE)-$(VERSION)am__remove_distdir = \  { test ! -d $(distdir) \    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \         && rm -fr $(distdir); }; }GZIP_ENV = --bestdistuninstallcheck_listfiles = find . -type f -printdistcleancheck_listfiles = find . -type f -printdistdir: $(DISTFILES)	$(am__remove_distdir)	mkdir $(distdir)	$(mkinstalldirs) $(distdir)/../../.. $(distdir)/./../../../automake	@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"; \	    $(mkinstalldirs) "$(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	-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	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz	$(am__remove_distdir)dist dist-all: distdir	$(AMTAR) chof - $(distdir) | 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	$(am__remove_distdir)	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -	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` \	  && 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 ../.. && $(mkinstalldirs) "$$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-gzip \	  && rm -f $(distdir).tar.gz \	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck	$(am__remove_distdir)	@echo "$(distdir).tar.gz is ready for distribution" | \	  sed 'h;s/./=/g;p;x;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: check-amall-am: Makefile $(PROGRAMS) $(MANS)installdirs:	$(mkinstalldirs) $(DESTDIR)$(man1dir)install: 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_STRIP_FLAG=-s \	  `test -z '$(STRIP)' || \	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` installmostlyclean-generic:clean-generic:distclean-generic:	-rm -f Makefile $(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-noinstPROGRAMS mostlyclean-amdistclean: distclean-am	-rm -f $(am__CONFIG_DISTCLEAN_FILES)distclean-am: clean-am distclean-compile distclean-depend \	distclean-generic distclean-tagsdvi: dvi-amdvi-am:info: info-aminfo-am:install-data-am: install-maninstall-exec-am:install-info: install-info-aminstall-man: install-man1installcheck-am:maintainer-clean: maintainer-clean-am	-rm -f $(am__CONFIG_DISTCLEAN_FILES)	-rm -rf autom4te.cachemaintainer-clean-am: distclean-am maintainer-clean-genericmostlyclean: mostlyclean-ammostlyclean-am: mostlyclean-compile mostlyclean-genericpdf: pdf-ampdf-am:ps: ps-amps-am:uninstall-am: uninstall-info-am uninstall-manuninstall-man: uninstall-man1.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \	clean-noinstPROGRAMS ctags dist dist-all dist-gzip distcheck \	distclean distclean-compile distclean-depend distclean-generic \	distclean-tags distcleancheck distdir distuninstallcheck dvi \	dvi-am info info-am install install-am install-data \	install-data-am install-exec install-exec-am install-info \	install-info-am install-man install-man1 install-strip \	installcheck installcheck-am installdirs maintainer-clean \	maintainer-clean-generic mostlyclean mostlyclean-compile \	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \	uninstall-am uninstall-info-am uninstall-man uninstall-man1@HELP2MAN_TRUE@shgen.1: shgen$(EXEEXT)@HELP2MAN_TRUE@	$(HELP2MAN) -N ./shgen >$@debug:	@echo	@echo "\"make debug\" is obsolete, instead use:"	@echo "	make VARIANT=DEBUG"	@echo.PHONY: debugprofile:	@echo	@echo "\"make profile\" is obsolete, instead use:"	@echo "	make VARIANT=PROFILE"	@echopreinstall-am: $(PREINSTALL_FILES)preinstall: preinstall-am.PHONY: preinstall preinstall-amdepend-am:depend: depend-am.PHONY: depend depend-am# 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 + -