makefile.in

来自「gcc-2.95.3 Linux下最常用的C编译器」· IN 代码 · 共 36 行

IN
36
字号
srcdir = .#### package, host, target, and site dependent Makefile fragments come in here.### These are compiled from the corresponding ../ioFOO.c files.STDIO_RENAMED_OBJECTS = ... filled in by configure ...# These are the files that a libc would want.STDIO_OBJECTS = $(STDIO_RENAMED_OBJECTS) \  clearerr.o fdopen.o fgetc.o fileno.o \  fputc.o freopen.o fseek.o getchar.o getline.o getw.o \  popen.o putchar.o putw.o rewind.o \  setbuf.o setfileno.o setlinebuf.o snprintf.o \  vfprintf.o vfscanf.o vprintf.o vscanf.o vsnprintf.oCC_FOR_STDIO=$(CC)CINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/.. -D__USE_GNUnothing:stmp-libio: stdio.list stamp-iostamp-io:	$(AR) $(AR_FLAGS) ../libio.a $(STDIO_OBJECTS)	touch stmp-iostmp-libiostream: stdio.list stamp-streamlibstamp-streamlib:	$(AR) $(AR_FLAGS) ../libiostream.a $(STDIO_OBJECTS)	touch stmp-streamlibstdio.list: stamp-picdir $(STDIO_OBJECTS)	@echo "$(STDIO_OBJECTS)" >stdio.list

⌨️ 快捷键说明

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