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

📄 makefile.in

📁 早期freebsd实现
💻 IN
字号:
VERSION=0.90SUBDIRS = stdio testsrcdir = .prefix = /usr/localexec_prefix = $(prefix)bindir = $(exec_prefix)/binlibdir = $(exec_prefix)/libdatadir = $(prefix)/libmandir = $(prefix)/manman1dir = $(mandir)/man1man2dir = $(mandir)/man2man3dir = $(mandir)/man3man4dir = $(mandir)/man4man5dir = $(mandir)/man5man6dir = $(mandir)/man6man7dir = $(mandir)/man7man8dir = $(mandir)/man8man9dir = $(mandir)/man9infodir = $(prefix)/infoincludedir = $(prefix)/includegxx_includedir = $(libdir)/g++-includedocdir = $(datadir)/docSHELL = /bin/shINSTALL = install -cINSTALL_PROGRAM = $(INSTALL)INSTALL_DATA = $(INSTALL)AR = `if [ -f ../../../binutils/ar ] ; \	then echo ../../../binutils/ar ; \	else echo ar ; fi`AR_FLAGS = qcRANLIB = `if [ -f ../../../binutils/ranlib ] ; \	then echo ../../../binutils/ranlib ; \	else echo ranlib ; fi`MAKEINFO = `if [ -f ../../../texinfo/C/makeinfo ] ; \	then echo ../../../texinfo/C/makeinfo ; \	else echo makeinfo ; fi`CC = `if [ -f $${rootprefix}../../gcc/gcc ] ; \	then echo $${rootprefix}../../gcc/gcc -B$${rootprefix}../../gcc/ ; \	else echo cc ; fi`CXX = `if [ -f $${rootprefix}../../gcc/gcc ] ; \	then echo $${rootprefix}../../gcc/gcc -B$${rootprefix}../../gcc/ ; \	else echo gcc ; fi`#CC = `[ $(build_host) != $(host_alias) ] && host_prefix=$(host_alias)-;\#	if [ -f $${rootprefix}../..$(host_root)/$${host_prefix}gcc/gcc ] ; \#	then echo $${rootprefix}../..$(host_root)/$${host_prefix}gcc/gcc -B$${rootprefix}../..$(host_root)/$${host_prefix}gcc/; \#	else echo $${host_prefix}gcc; fi`XTRAFLAGS = `if [ -f $${rootprefix}../..$(host_root)/$(host_prefix)gcc/gcc ] ;\	then echo -I$${rootprefix}../..$(host_root)/$(host_prefix)gcc/include;\	else echo ; fi`WRAP_C_INCLUDES=-I$(srcdir)/../g++-include#### host and target dependent Makefile fragments come in here.### List of variables to pass to sub-makes.  This should not be needed# by GNU make or Sun make (both of which pass command-line variable# overrides thouh $(MAKE)) but may be needed by older versions.FLAGS_TO_PASS= \	"prefix=$(prefix)" \	"exec_prefix=$(exec_prefix)" \	"tooldir=$(tooldir)" \	"AR=$(AR)" \	"AR_FLAGS=$(AR_FLAGS)" \	"CC=$(CC)" \	"CXX=$(CXX)" \	"CFLAGS=$(CFLAGS)" \	"CXXFLAGS=$(CXXFLAGS)" \	"RANLIB=$(RANLIB)" \	"LOADLIBES=$(LOADLIBES)" \	"LDFLAGS=$(LDFLAGS)" \	"MAKEINFO=$(MAKEINFO)" \	"XTRAFLAGS=$(XTRAFLAGS)".SUFFIXES: .o .C.C.o:	$(CXX) $(CXXFLAGS) $(NOSTDINC) -I. -I.. -I$(srcdir) -I$(srcdir)/../src $(WRAP_C_INCLUDES) -c $(XTRAFLAGS) $<TARGETLIB=libio.aIOSTREAM_OBS= streambuf.o stdstrbufs.o iostream.o stdstreams.o strstream.o \  indstream.o PlotFile.o SFile.o fstream.o parsestream.o stream.o makebuf.o \  editbuf.o filebuf.o sgetline.o igetline.o igetsb.o procbuf.o \  sbufvform.o sbufvscan.o stdiostream.o floatconv.o outfloat.o iomanip.o# The following include files are merely to provide partial# compatibilty with the old stream library from libg++.COMPAT_INCLUDES = istream.h ostream.h stream.h# The following include files are publicly visible, and# should be installed where user programs can find them.USER_INCLUDES = editbuf.h fstream.h iomanip.h iostream.h indstream.h \  parsestream.h streambuf.h strstream.h PlotFile.h SFile.h procbuf.h \  stdiostream.h $(COMPAT_INCLUDES)# The following include files are private to the implementation.INTERNAL_INCLUDES = ioprivate.h floatio.hDEPEND_SOURCES = $(srcdir)/*.C#NOSTDINC = -nostdinc++CFLAGS = -gCXXFLAGS = -g -O.PHONY: allall: $(TARGETLIB)	@rootprefix=`pwd`/; export rootprefix; \	$(MAKE) subdir_do "DODIRS=$(SUBDIRS)" DO=all $(FLAGS_TO_PASS).PHONY: installinstall:.PHONY: checkcheck: $(TARGETLIB)	@rootprefix=`pwd`/; export rootprefix; \	$(MAKE) subdir_do "DODIRS=$(SUBDIRS)" DO=check $(FLAGS_TO_PASS).PHONY: infoinfo: iostream.info.PHONY: clean-infoclean-info:.PHONY: install-infoinstall-info: info	-if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi	for i in *.info* ; do \		$(INSTALL_DATA) $$i $(infodir)/$$i ; \		chmod a-x $(infodir)/$$i ; \	done.PHONY: boltccboltcc:	$(MAKE) $(FLAGS_TO_PASS) $(TARGETLIB)# ../libg++.a depends on the stamp file.stamp: $(IOSTREAM_OBS)	@touch stamp$(TARGETLIB): stamp	-rm -f $(TARGETLIB)	$(AR) $(AR_FLAGS) $(TARGETLIB) $(IOSTREAM_OBS)	$(RANLIB) $(TARGETLIB)DIST_NAME=iostream-${VERSION}DIST_FILE=$(DIST_NAME).tar.Z${DIST_FILE}: dist.PHONY: distdist: FORCE	-mkdir $(DIST_NAME)	cd $(DIST_NAME); \	  ln -s $(srcdir)/../Make.defs .; \	  ln -s $(srcdir)/../g++-include/_G_config.h .; \	  ln -s $(srcdir)/* \	    $(srcdir)/../../configure $(srcdir)/../../config.sub .; \	  rm -rf test stdio *~ CVS configure.in; \	  sed -e 's|\.\./||' <$(srcdir)/configure.in > configure.in; \	  mkdir test stdio	cd $(DIST_NAME)/stdio; \	  ln -s $(srcdir)/stdio/* .; \	  rm -rf *~ CVS configure.in; \	  sed -e 's|\.\./||' <$(srcdir)/stdio/configure.in > configure.in	cd $(DIST_NAME)/test; \	  ln -s $(srcdir)/test/* .; \	  rm -rf *~ CVS configure.in; \	  sed -e 's|\.\./||' <$(srcdir)/test/configure.in > configure.in	tar -c -h -f - $(DIST_NAME) | compress -c >$(DIST_NAME).tar.Z	rm -rf $(DIST_NAME)# clean rules.PHONY: mostlyclean clean distclean realclean.PHONY: do_mostlyclean do_clean do_distclean do_realcleando_mostlyclean:	rm -f *.o core *.tar.Z stampdo_clean: do_mostlyclean	rm -f *.ado_distclean: do_clean	rm -f *~ *.a config.status *.info Makefiledo_realclean: do_distclean	rm -f dependmostlyclean: do_mostlyclean	@$(MAKE) subdir_do "DODIRS=$(SUBDIRS)" DO=mostlycleanclean: do_clean	@$(MAKE) subdir_do "DODIRS=$(SUBDIRS)" DO=cleandistclean:	@$(MAKE) subdir_do "DODIRS=$(SUBDIRS)" DO=distclean	@$(MAKE) do_distcleanrealclean:	@$(MAKE) subdir_do "DODIRS=$(SUBDIRS)" DO=realclean	@$(MAKE) do_realcleaniostream.info: $(srcdir)/iostream.texi	$(MAKEINFO) -o iostream.info $(srcdir)/iostream.texi.PHONY: install-include-filesinstall-include-files:	[ -d $(gxx_includedir) ] || mkdir $(gxx_includedir)	cd $(srcdir); \	for FILE in $(USER_INCLUDES) ; do \		rm -f $(gxx_includedir)/$$FILE ; \		$(INSTALL_DATA) $$FILE $(gxx_includedir)/$$FILE ; \		chmod a-x $(gxx_includedir)/$$FILE ; \	done.PHONY: subdir_dosubdir_do: force	@rootprefix=`pwd`/; export rootprefix; \	for i in $(DODIRS); do \		if [ -d ./$$i ] ; then \			echo "cd $$i; make $(DO) ..." ; \			(cd $$i ; $(MAKE) $(DO) $(FLAGS_TO_PASS)) || exit 1 ; \		else true ; fi ; \	done.PHONY: forceforce:# with the gnu make, this is done automatically.Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)	$(SHELL) ./config.status.NOEXPORT:

⌨️ 快捷键说明

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