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

📄 makefile.am

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 AM
字号:
## Process this file with automake to generate Makefile.inAUTOMAKE_OPTIONS = cygnusINCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)GENERAL_SOURCES = \	clearerr.c 			\	fclose.c 			\	fdopen.c 			\	feof.c 				\	ferror.c 			\	fflush.c 			\	fgetc.c 			\	fgetpos.c 			\	fgets.c 			\	fileno.c			\	findfp.c 			\	fiprintf.c 			\	flags.c 			\	fopen.c 			\	fprintf.c 			\	fputc.c 			\	fputs.c 			\	fread.c 			\	freopen.c 			\	fscanf.c 			\	fseek.c 			\	fsetpos.c 			\	ftell.c 			\	fvwrite.c 			\	fwalk.c 			\	fwrite.c 			\	getc.c 				\	getchar.c 			\	getc_u.c			\	getchar_u.c			\	getdelim.c			\	getline.c			\	gets.c 				\	iprintf.c 			\	makebuf.c			\	perror.c 			\	printf.c 			\	putc.c 				\	putchar.c 			\	putc_u.c			\	putchar_u.c			\	puts.c 				\	refill.c 			\	remove.c 			\	rename.c 			\	rewind.c 			\	rget.c 				\	scanf.c 			\	setbuf.c 			\	setbuffer.c 			\	setlinebuf.c 			\	setvbuf.c 			\	siprintf.c 			\	snprintf.c			\	sprintf.c 			\	sscanf.c 			\	stdio.c 			\	tmpfile.c 			\	tmpnam.c 			\	ungetc.c 			\	vfscanf.c 			\	vprintf.c 			\	vscanf.c			\	vsnprintf.c			\	vsprintf.c 			\	vsscanf.c			\	wbuf.c 				\	wsetup.c ## The following are EL/IX level 2 interfacesif ELIX_LEVEL_1LIB_OBJS =elseLIB_OBJS = \	asprintf.$(oext)		\	fcloseall.$(oext)		\	fseeko.$(oext) 			\	ftello.$(oext) 			\	getw.$(oext)			\	mktemp.$(oext) 			\	putw.$(oext)endifLIBADD_OBJS = vfiprintf.$(oext) vfprintf.$(oext)libstdio_la_LDFLAGS = -Xcompiler -nostdlibif USE_LIBTOOLnoinst_LTLIBRARIES = libstdio.lalibstdio_la_SOURCES = $(GENERAL_SOURCES)libstdio_la_LIBADD = $(LIBADD_OBJS) $(LIB_OBJS)libstdio_la_DEPENDENCIES = $(LIBADD_OBJS) $(LIB_OBJS)LIB_COMPILE = $(LTCOMPILE)noinst_DATA = objectlist.awk.inelsenoinst_LIBRARIES = lib.alib_a_SOURCES = $(GENERAL_SOURCES)lib_a_LIBADD = $(LIBADD_OBJS) $(LIB_OBJS)lib_a_DEPENDENCIES = $(LIBADD_OBJS) $(LIB_OBJS)LIB_COMPILE = $(COMPILE)noinst_DATA =endif # USE_LIBTOOLinclude $(srcdir)/../../Makefile.shared# This rule is needed so that libtool compiles vfiprintf before vfprintf. Otherwise# libtool moves vfprintf.o and subsequently can't find it.vfprintf.$(oext): vfprintf.c	$(LIB_COMPILE) -fshort-enums -c $(srcdir)/vfprintf.cvfiprintf.$(oext): vfprintf.c	$(LIB_COMPILE) -fshort-enums -DINTEGER_ONLY -c $(srcdir)/vfprintf.c -o $@CHEWOUT_FILES = \	clearerr.def		\	fclose.def		\	fcloseall.def		\	fdopen.def		\	feof.def		\	ferror.def		\	fflush.def		\	fgetc.def		\	fgetpos.def		\	fgets.def		\	fileno.def		\	fiprintf.def		\	fopen.def		\	fputc.def		\	fputs.def		\	fread.def		\	freopen.def		\	fseek.def		\	fsetpos.def		\	ftell.def		\	fwrite.def		\	getc.def		\	getchar.def		\	getc_u.def		\	getchar_u.def		\	getdelim.def		\	getline.def		\	gets.def		\	getw.def		\	iprintf.def		\	mktemp.def		\	perror.def		\	putc.def		\	putchar.def		\	putc_u.def		\	putchar_u.def		\	puts.def		\	putw.def		\	remove.def		\	rename.def		\	rewind.def		\	setbuf.def		\	setbuffer.def		\	setlinebuf.def		\	setvbuf.def		\	siprintf.def		\	sprintf.def		\	sscanf.def		\	tmpfile.def		\	tmpnam.def		\	vfprintf.def		\	vfscanf.defSUFFIXES = .defCHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str.c.def:	$(CHEW) < $< > $*.def 2> $*.ref	touch stmp-defTARGETDOC = ../tmp.texidoc: $(CHEWOUT_FILES)	cat $(srcdir)/stdio.tex >> $(TARGETDOC)CLEANFILES = $(CHEWOUT_FILES) *.reffclose.$(oext): local.hfdopen.$(oext): local.hfflush.$(oext): local.hfindfp.$(oext): local.hfopen.$(oext): local.hfputs.$(oext): fvwrite.hfread.$(oext): local.hfreopen.$(oext): local.hfseek.$(oext): local.hftell.$(oext): local.hfvwrite.$(oext): local.h fvwrite.hfwalk.$(oext): local.hfwrite.$(oext): local.h fvwrite.hmakebuf.$(oext): local.hputs.$(oext): fvwrite.hrefill.$(oext): local.hscanf.$(oext): local.hsetbuf.$(oext): local.hsetvbuf.$(oext): local.hsiprintf.$(oext): local.hsprintf.$(oext): local.hsscanf.$(oext): local.hstdio.$(oext): local.hungetc.$(oext): local.hvfiprintf.$(oext): local.hvfprintf.$(oext): local.hvfscanf.$(oext): local.h floatio.hvscanf.$(oext): local.hvsscanf.$(oext): local.hwbuf.$(oext): local.h fvwrite.hwsetup.$(oext): local.h

⌨️ 快捷键说明

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