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

📄 makefile.netlib

📁 gcc-2.95.3 Linux下最常用的C编译器
💻 NETLIB
字号:
.SUFFIXES: .c .oCC = ccCFLAGS = -OSHELL = /bin/sh# compile, then strip unnecessary symbols.c.o:	$(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c	ld -r -x -o $*.xxx $*.o	mv $*.xxx $*.o## Under Solaris (and other systems that do not understand ld -x),## omit -x in the ld line above.## If your system does not have the ld command, comment out## or remove both the ld and mv lines above.OBJ =	Version.o backspace.o close.o dfe.o dolio.o due.o endfile.o err.o \	fmt.o fmtlib.o ftell_.o iio.o ilnw.o inquire.o lread.o lwrite.o \	open.o rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o typesize.o \	uio.o util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.olibI77.a:	$(OBJ)		ar r libI77.a $?		-ranlib libI77.a### If your system lacks ranlib, you don't need it; see README.install:	libI77.a	cp libI77.a /usr/lib/libI77.a	ranlib /usr/lib/libI77.aVersion.o: Version.c	$(CC) -c Version.c# To compile with C++, first "make f2c.h"f2c.h: f2ch.add	cat /usr/include/f2c.h f2ch.add >f2c.hclean:	rm -f $(OBJ) libI77.aclobber:	clean	rm -f libI77.abackspace.o:	fio.hclose.o:	fio.hdfe.o:		fio.hdfe.o:		fmt.hdue.o:		fio.hendfile.o:	fio.h rawio.herr.o:		fio.h rawio.hfmt.o:		fio.hfmt.o:		fmt.hftell_.o:	fio.hiio.o:		fio.hiio.o:		fmt.hilnw.o:		fio.hilnw.o:		lio.hinquire.o:	fio.hlread.o:	fio.hlread.o:	fmt.hlread.o:	lio.hlread.o:	fp.hlwrite.o:	fio.hlwrite.o:	fmt.hlwrite.o:	lio.hopen.o:		fio.h rawio.hrdfmt.o:	fio.hrdfmt.o:	fmt.hrdfmt.o:	fp.hrewind.o:	fio.hrsfe.o:		fio.hrsfe.o:		fmt.hrsli.o:		fio.hrsli.o:		lio.hrsne.o:		fio.hrsne.o:		lio.hsfe.o:		fio.hsue.o:		fio.huio.o:		fio.hutil.o:		fio.hwref.o:		fio.hwref.o:		fmt.hwref.o:		fp.hwrtfmt.o:	fio.hwrtfmt.o:	fmt.hwsfe.o:		fio.hwsfe.o:		fmt.hwsle.o:		fio.hwsle.o:		fmt.hwsle.o:		lio.hwsne.o:		fio.hwsne.o:		lio.hxwsne.o:	fio.hxwsne.o:	lio.hxwsne.o:	fmt.hcheck:	xsum Notice README Version.c backspace.c close.c dfe.c dolio.c \	due.c endfile.c err.c f2ch.add fio.h fmt.c fmt.h fmtlib.c fp.h \	ftell_.c iio.c ilnw.c inquire.c lio.h lread.c lwrite.c makefile \	open.c rawio.h rdfmt.c rewind.c rsfe.c rsli.c rsne.c sfe.c sue.c \	typesize.c uio.c util.c wref.c wrtfmt.c wsfe.c wsle.c wsne.c \	xwsne.c >zap	cmp zap libI77.xsum && rm zap || diff libI77.xsum zap

⌨️ 快捷键说明

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