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

📄 makefile.in

📁 早期freebsd实现
💻 IN
字号:
srcdir = .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.##.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.status Makefilerealclean: 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:

⌨️ 快捷键说明

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