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

📄 makefile.in

📁 popt-1.7.tar.gz ninigui之MDE编译库支持文件库
💻 IN
📖 第 1 页 / 共 2 页
字号:
	  f="`echo $$p | sed -e 's|^.*/||'`"; \	  echo " $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f"; \	  $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f; \	doneuninstall-includeHEADERS:	@$(NORMAL_UNINSTALL)	@list='$(include_HEADERS)'; for p in $$list; do \	  f="`echo $$p | sed -e 's|^.*/||'`"; \	  echo " rm -f $(DESTDIR)$(includedir)/$$f"; \	  rm -f $(DESTDIR)$(includedir)/$$f; \	done# This directory's subdirectories are mostly independent; you can cd# into them and run `make' without going through this Makefile.# To change the values of `make' variables: instead of editing Makefiles,# (1) if the variable is set in `config.status', edit `config.status'#     (which will cause the Makefiles to be regenerated when you run `make');# (2) otherwise, pass the desired values on the `make' command line.$(RECURSIVE_TARGETS):	@set fnord $$MAKEFLAGS; amf=$$2; \	dot_seen=no; \	target=`echo $@ | sed s/-recursive//`; \	list='$(SUBDIRS)'; for subdir in $$list; do \	  echo "Making $$target in $$subdir"; \	  if test "$$subdir" = "."; then \	    dot_seen=yes; \	    local_target="$$target-am"; \	  else \	    local_target="$$target"; \	  fi; \	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \	done; \	if test "$$dot_seen" = "no"; then \	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \	fi; test -z "$$fail"mostlyclean-recursive clean-recursive distclean-recursive \maintainer-clean-recursive:	@set fnord $$MAKEFLAGS; amf=$$2; \	dot_seen=no; \	case "$@" in \	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \	  *) list='$(SUBDIRS)' ;; \	esac; \	rev=''; for subdir in $$list; do \	  if test "$$subdir" = "."; then :; else \	    rev="$$subdir $$rev"; \	  fi; \	done; \	rev="$$rev ."; \	target=`echo $@ | sed s/-recursive//`; \	for subdir in $$rev; do \	  echo "Making $$target in $$subdir"; \	  if test "$$subdir" = "."; then \	    local_target="$$target-am"; \	  else \	    local_target="$$target"; \	  fi; \	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \	done && test -z "$$fail"tags-recursive:	list='$(SUBDIRS)'; for subdir in $$list; do \	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \	doneETAGS = etagsETAGSFLAGS =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: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \		$(TAGS_FILES) $(LISP)	tags=; \	here=`pwd`; \	list='$(SUBDIRS)'; for subdir in $$list; do \	  if test "$$subdir" = .; then :; else \	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \	  fi; \	done; \	list='$(SOURCES) $(HEADERS) config.h.in $(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 $$uniqueGTAGS:	here=`$(am__cd) $(top_builddir) && pwd` \	  && cd $(top_srcdir) \	  && gtags -i $(GTAGS_ARGS) $$heredistclean-tags:	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATHcheck-TESTS: $(TESTS)	@failed=0; all=0; xfail=0; xpass=0; \	srcdir=$(srcdir); export srcdir; \	list='$(TESTS)'; \	if test -n "$$list"; then \	  for tst in $$list; do \	    if test -f ./$$tst; then dir=./; \	    elif test -f $$tst; then dir=; \	    else dir="$(srcdir)/"; fi; \	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \	      all=`expr $$all + 1`; \	      case " $(XFAIL_TESTS) " in \	      *" $$tst "*) \	        xpass=`expr $$xpass + 1`; \	        failed=`expr $$failed + 1`; \	        echo "XPASS: $$tst"; \	      ;; \	      *) \	        echo "PASS: $$tst"; \	      ;; \	      esac; \	    elif test $$? -ne 77; then \	      all=`expr $$all + 1`; \	      case " $(XFAIL_TESTS) " in \	      *" $$tst "*) \	        xfail=`expr $$xfail + 1`; \	        echo "XFAIL: $$tst"; \	      ;; \	      *) \	        failed=`expr $$failed + 1`; \	        echo "FAIL: $$tst"; \	      ;; \	      esac; \	    fi; \	  done; \	  if test "$$failed" -eq 0; then \	    if test "$$xfail" -eq 0; then \	      banner="All $$all tests passed"; \	    else \	      banner="All $$all tests behaved as expected ($$xfail expected failures)"; \	    fi; \	  else \	    if test "$$xpass" -eq 0; then \	      banner="$$failed of $$all tests failed"; \	    else \	      banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \	    fi; \	  fi; \	  dashes=`echo "$$banner" | sed s/./=/g`; \	  echo "$$dashes"; \	  echo "$$banner"; \	  echo "$$dashes"; \	  test "$$failed" -eq 0; \	else :; fiDISTFILES = $(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 = --bestdistcleancheck_listfiles = find . -type f -printdistdir: $(DISTFILES)	$(am__remove_distdir)	mkdir $(distdir)	$(mkinstalldirs) $(distdir)/. $(distdir)/intl $(distdir)/po	@list='$(DISTFILES)'; for file in $$list; do \	  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	list='$(SUBDIRS)'; for subdir in $$list; do \	  if test "$$subdir" = .; then :; else \	    test -d $(distdir)/$$subdir \	    || mkdir $(distdir)/$$subdir \	    || exit 1; \	    (cd $$subdir && \	      $(MAKE) $(AM_MAKEFLAGS) \	        top_distdir="$(top_distdir)" \	        distdir=../$(distdir)/$$subdir \	        distdir) \	      || 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` \	  && cd $(distdir)/=build \	  && ../configure --srcdir=.. --prefix=$$dc_install_base \	    --with-included-gettext \	    $(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 \	  && (test `find $$dc_install_base -type f -print | wc -l` -le 1 \	      || { echo "ERROR: files left after uninstall:" ; \	           find $$dc_install_base -type f -print ; \	           exit 1; } >&2 ) \	  && $(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'distcleancheck: 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 after distclean:" ; \	       $(distcleancheck_listfiles) ; \	       exit 1; } >&2check-am: all-am	$(MAKE) $(AM_MAKEFLAGS) check-TESTScheck: check-recursiveall-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) \		$(HEADERS) config.hinstalldirs: installdirs-recursiveinstalldirs-am:	$(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(man3dir) $(DESTDIR)$(includedir)install: 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_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-recursiveclean-am: clean-generic clean-libLTLIBRARIES clean-libtool \	clean-noinstPROGRAMS mostlyclean-amdistclean: distclean-recursive	-rm -f $(am__CONFIG_DISTCLEAN_FILES)distclean-am: clean-am distclean-compile distclean-depend \	distclean-generic distclean-hdr distclean-libtool \	distclean-tagsdvi: dvi-recursivedvi-am:info: info-recursiveinfo-am:install-data-am: install-includeHEADERS install-maninstall-exec-am: install-libLTLIBRARIESinstall-info: install-info-recursiveinstall-man: install-man3installcheck-am:maintainer-clean: maintainer-clean-recursive	-rm -f $(am__CONFIG_DISTCLEAN_FILES)	-rm -rf autom4te.cachemaintainer-clean-am: distclean-am maintainer-clean-genericmostlyclean: mostlyclean-recursivemostlyclean-am: mostlyclean-compile mostlyclean-generic \	mostlyclean-libtooluninstall-am: uninstall-includeHEADERS uninstall-info-am \	uninstall-libLTLIBRARIES uninstall-manuninstall-info: uninstall-info-recursiveuninstall-man: uninstall-man3.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-TESTS check-am \	clean clean-generic clean-libLTLIBRARIES clean-libtool \	clean-noinstPROGRAMS clean-recursive dist dist-all dist-gzip \	distcheck distclean distclean-compile distclean-depend \	distclean-generic distclean-hdr distclean-libtool \	distclean-recursive distclean-tags distcleancheck distdir dvi \	dvi-am dvi-recursive info info-am info-recursive install \	install-am install-data install-data-am install-data-recursive \	install-exec install-exec-am install-exec-recursive \	install-includeHEADERS install-info install-info-am \	install-info-recursive install-libLTLIBRARIES install-man \	install-man3 install-recursive install-strip installcheck \	installcheck-am installdirs installdirs-am \	installdirs-recursive maintainer-clean maintainer-clean-generic \	maintainer-clean-recursive mostlyclean mostlyclean-compile \	mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \	tags tags-recursive uninstall uninstall-am \	uninstall-includeHEADERS uninstall-info-am \	uninstall-info-recursive uninstall-libLTLIBRARIES uninstall-man \	uninstall-man3 uninstall-recursive#BUILT_SOURCES = popt.lcdpopt.lcd: Makefile.am ${libpopt_la_SOURCES} ${include_HEADERS} ${noinst_HEADERS}	lclint -dump $@ ${libpopt_la_SOURCES}.PHONY:	sourcessources:	@echo $(libpopt_la_SOURCES:%=popt/%).PHONY: lclintlclint:	lclint ${DEFS} ${INCLUDES} test1.c ${libpopt_la_SOURCES}.PHONY: archivearchive: 	@echo "This is $(PACKAGE)-$(VERSION)."	@sleep 5	@cvs -Q tag -F $(CVSTAG) .	@rm -rf /tmp/$(PACKAGE)-$(VERSION) /tmp/$(PACKAGE)	@cd /tmp; cvs -Q -d $(CVSROOT) export -r$(CVSTAG) $(PACKAGE) || :	@mv /tmp/$(PACKAGE) /tmp/$(PACKAGE)-$(VERSION)	@cd /tmp/$(PACKAGE)-$(VERSION); ./autogen.sh ; make depend; make distclean	@cd /tmp/$(PACKAGE)-$(VERSION); ./autogen.sh --noconfigure	@cd /tmp; tar czSpf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)	@rm -rf /tmp/$(PACKAGE)-$(VERSION)	@cp /tmp/$(PACKAGE)-$(VERSION).tar.gz .	@rm -f /tmp/$(PACKAGE)-$(VERSION).tar.gz 	@echo " "	@echo "The final archive is ./$(PACKAGE)-$(VERSION).tar.gz.".PHONY: doxygendoxygen: Doxyfile	rm -rf doxygen	mkdir -p doxygen	doxygen# 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 + -