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

📄 makefile

📁 早期freebsd实现
💻
字号:
# This file was generated automatically by configure.  Do not edit.VPATH = .links = host_alias = m68k-hp-bsdhost_cpu = m68khost_vendor = hphost_os = bsdhost_canonical = m68k-hp-bsdtarget_alias = m68k-hp-bsdtarget_cpu = m68ktarget_vendor = hptarget_os = bsdtarget_canonical = m68k-hp-bsdhost_makefile_frag = ../../m68k-hp-bsd.mhALL=all.internalsrcdir = .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)/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`STDIO_CFILES = clearerr.C emulate.C fclose.C fdopen.C feof.C \  ferror.C fflush.C fgetc.C fgetpos.C fgets.C fileno.C fopen.C \  fprintf.C fputc.C fputs.C fread.C freopen.C fscanf.C fseek.C \  fsetpos.C ftell.C fwrite.C gets.C perror.C popen.C printf.C puts.C \  remove.C rename.C rewind.C  scanf.C setbuf.C setbuffer.C \  setlinebuf.C setvbuf.C sprintf.C sscanf.C stdio.C tmpfile.C \  tmpnam.C vfprintf.C vfscanf.C vprintf.C vsprintf.C vscanf.C \  vsscanf.C ungetc.CSTDIO_FILES = $(STDIO_CFILES) stdio.h MakefileSTDIO_OBJECTS = clearerr.o emulate.o fclose.o fdopen.o feof.o \  ferror.o fflush.o fgetc.o fgetpos.o fgets.o fileno.o fopen.o \  fprintf.o fputc.o fputs.o fread.o freopen.o fscanf.o fseek.o \  fsetpos.o ftell.o fwrite.o gets.o perror.o popen.o printf.o puts.o \  remove.o rename.o rewind.o  scanf.o setbuf.o setbuffer.o \  setlinebuf.o setvbuf.o sprintf.o sscanf.o stdio.o tmpfile.o \  tmpnam.o vfprintf.o vfscanf.o vprintf.o vsprintf.o vscanf.o \  vsscanf.o ungetc.oDEPEND_SOURCES = $(srcdir)/*.CTARGETLIB = libstdio++.a# IO_DIR is used in 'depend' rules generated by ../../utils/gendepend.IO_DIR = iostreamCC = `if [ -f ../../../gcc/gcc ] ; \	then echo ../../../gcc/gcc -B../../../gcc/ ; \	else echo cc ; fi`CXX = `if [ -f ../../../gcc/gcc ] ; \	then echo ../../../gcc/gcc -B../../../gcc/ ; \	else echo gcc ; fi`CFLAGS = -gCXXFLAGS = -g -OXTRAFLAGS = `if [ -f ../../../gcc/gcc ] ; \	then echo -I../../../gcc/include ; \	else echo ; fi`WRAP_C_INCLUDES = -I$(srcdir)/../../g++-include#### Host and target-dependent makefile fragments come in here.INSTALL = install -cINSTALL_DATA = install -c -m 644# RANLIB = ranlib# Use -nostdinc++ flag if your version of gcc understands it.NOSTDINC = # -nostdinc++# If the C include files are C++-ready (with extern "C"),# define: HAVE_CPLUS_EXTERN = 1 and: WRAP_C_INCLUDES =# If not, define HAVE_CPLUS_EXTERN = 0, and do not define WRAP_C_INCLUDES here.HAVE_CPLUS_EXTERN = 0# Flags to pass to gen-params when building _G_config.h.# For example: G_CONFIG_ARGS = size_t="unsigned long"G_CONFIG_ARGS =##.SUFFIXES: .o .C .c .cc.C.o:	$(CXX) $(CXXFLAGS) $(NOSTDINC) -I../.. -I$(srcdir) -I$(srcdir)/.. $(WRAP_C_INCLUDES) -c $(XTRAFLAGS) $<.c.o:	$(CC) $(CFLAGS) $(NOSTDINC) -I../.. -I$(srcdir) -I$(srcdir)/.. $(WRAP_C_INCLUDES) -c $(XTRAFLAGS) $<.PHONY: allall: $(TARGETLIB).PHONY: infoinfo:.PHONY: clean-infoclean-info:.PHONY: install-infoinstall-info:.PHONY: checkcheck:$(TARGETLIB): $(STDIO_OBJECTS)	-rm -f $(TARGETLIB)	$(AR) $(AR_FLAGS) $(TARGETLIB) $(STDIO_OBJECTS)	$(RANLIB) $(TARGETLIB)	.PHONY: installinstall:	-parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \	if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi	-if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi	-rm -f $(libdir)/$(TARGETLIB)	$(INSTALL_DATA) $(TARGETLIB) $(libdir)/$(TARGETLIB)	$(RANLIB) $(libdir)/$(TARGETLIB).PHONY: mostlyclean clean distclean realcleanmostlyclean:	rm -f *.o \#* coreclean: mostlyclean	rm -f *.adistclean: clean	rm -f *~ config.statusrealclean: distclean	rm -f dependforce:# with the gnu make, this is done automatically.Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)	$(SHELL) ./config.status.NOEXPORT:# DO NOT DELETE THIS LINE -- g++dep uses it.# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.clearerr.o : clearerr.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h emulate.o : emulate.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fclose.o : fclose.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fdopen.o : fdopen.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h feof.o : feof.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h ferror.o : ferror.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fflush.o : fflush.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fgetc.o : fgetc.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fgets.o : fgets.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fileno.o : fileno.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fopen.o : fopen.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fprintf.o : fprintf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.hfputc.o : fputc.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fputs.o : fputs.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fread.o : fread.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h freopen.o : freopen.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fscanf.o : fscanf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fseek.o : fseek.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h ftell.o : ftell.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h fwrite.o : fwrite.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h popen.o : popen.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h \  $(srcdir)/../../$(IO_DIR)/procbuf.hprintf.o : printf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h rewind.o : rewind.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h scanf.o : scanf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.hsetbuf.o : setbuf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h setbuffer.o : setbuffer.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h setlinebuf.o : setlinebuf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h setvbuf.o : setvbuf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h sprintf.o : sprintf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.hsscanf.o : sscanf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h \  $(srcdir)/../../$(IO_DIR)/strstream.h \  $(srcdir)/../../$(IO_DIR)/iostream.hstdio.o : stdio.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h ungetc.o : ungetc.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h vfprintf.o : vfprintf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h vfscanf.o : vfscanf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h vprintf.o : vprintf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.hvscanf.o : vscanf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h vsprintf.o : vsprintf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h \  $(srcdir)/../../$(IO_DIR)/strstream.h \  $(srcdir)/../../$(IO_DIR)/iostream.hvsscanf.o : vsscanf.C \  stdioprivate.h \  stdio.h \  $(srcdir)/../../$(IO_DIR)/ioprivate.h \  $(srcdir)/../../$(IO_DIR)/streambuf.h \  $(srcdir)/../../$(IO_DIR)/strstream.h \  $(srcdir)/../../$(IO_DIR)/iostream.h# IF YOU PUT ANYTHING HERE IT WILL GO AWAY

⌨️ 快捷键说明

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