📄 makefile
字号:
#ident "@(#)cls4:lib/complex/mk/makefile 1.1"################################################################################# C++ source for the C++ Language System, Release 3.0. This product# is a new release of the original cfront developed in the computer# science research center of AT&T Bell Laboratories.## Copyright (c) 1991 AT&T and UNIX System Laboratories, Inc.# Copyright (c) 1984, 1989, 1990 AT&T. All Rights Reserved.## THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of AT&T and UNIX System# # Laboratories, Inc. The copyright notice above does not evidence# any actual or intended publication of such source code.################################################################################O_COMPLEX = abs.o arg.o cos.o error.o exp.o io.o log.o oper.o \ polar.o pow.o sin.o sqrt.oCC = CCCCFLAGS = -DPRAGMATIClibcomplex.a: $(O_COMPLEX) ar r libcomplex.a $(O_COMPLEX) if test "$(BSD)" ; then ranlib libcomplex.a; fiabs.o: ../complex/abs.c $(CC) $(CCFLAGS) -I../complex -c ../complex/abs.carg.o: ../complex/arg.c $(CC) $(CCFLAGS) -I../complex -c ../complex/arg.ccos.o: ../complex/cos.c $(CC) $(CCFLAGS) -I../complex -c ../complex/cos.cerror.o: ../complex/error.c $(CC) $(CCFLAGS) -I../complex -c ../complex/error.cexp.o: ../complex/exp.c $(CC) $(CCFLAGS) -I../complex -c ../complex/exp.cio.o: ../complex/io.c $(CC) $(CCFLAGS) -I../complex -c ../complex/io.clog.o: ../complex/log.c $(CC) $(CCFLAGS) -I../complex -c ../complex/log.coper.o: ../complex/oper.c $(CC) $(CCFLAGS) -I../complex -c ../complex/oper.cpolar.o: ../complex/polar.c $(CC) $(CCFLAGS) -I../complex -c ../complex/polar.cpow.o: ../complex/pow.c $(CC) $(CCFLAGS) -I../complex -c ../complex/pow.csin.o: ../complex/sin.c $(CC) $(CCFLAGS) -I../complex -c ../complex/sin.csqrt.o: ../complex/sqrt.c $(CC) $(CCFLAGS) -I../complex -c ../complex/sqrt.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -