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

📄 makefile

📁 128位长双精度型数字运算包
💻
字号:
# Makefile for 128-bit long double precision calculator# and test program.# GNU gcc C compiler version 2.5 will do this.# Get ieee.c, econst.c, ehead.h from netlib/cephes/ieee.shar.Z.CC= gcc -msoft-quad-floatCFLAGS= -O -WallINCS= mconf.hOBJS= ieee.o econst.o cbrtll.o expll.o logll.o tanhll.o powll.o \powill.o sqrtll.o sinhll.o asinhll.o coshll.o acoshll.o \sinll.o tanll.o atanll.o asinll.o atanhll.o log10ll.o exp10ll.o \log2ll.o exp2ll.o floorll.o polevll.o constll.o mtherr.oall: lcalc mtstl libml.alcalc: lcalc.o $(OBJS) $(INCS)	$(CC) -o lcalc lcalc.o $(OBJS)mtstl: mtstl.o drand.o $(OBJS) $(INCS)	$(CC) -o mtstl mtstl.o drand.o $(OBJS)libml.a: $(OBJS)	ar rv libml.a $(OBJS)	ranlib libml.a# for SPARC processor, else use sqrtll.c.# Use -mhard-quad-float switch with gcc.#sqrtll.o: sqrtll.spa#	as -o sqrtll.o sqrtll.spa# For SPARC using Sun software _Q_ arithmetic library.# Use -msoft-quad-float switch with gcc 2.6.sqrtll.o: sqrtll.qll	as -o sqrtll.o sqrtll.qll

⌨️ 快捷键说明

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