?? makefile
字號(hào):
# 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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -