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

📄 makefile

📁 早期freebsd实现
💻
字号:
## lib - makefile for calc library scripts## Copyright (c) 1994 David I. Bell and Landon Curt Noll# Permission is granted to use, distribute, or modify this source,# provided that this copyright notice remains intact.## Arbitrary precision calculator.## calculator by David I. Bell# makefile by Landon Curt Noll# Normally, the upper level makefile will set these values.  We provide# a default here just in case you want to build from this directory.## where to install thingsTOPDIR= /usr/local/lib#TOPDIR= /usr/lib#TOPDIR= /usr/libdataLIBDIR= ${TOPDIR}/calc# The calc files to install#CALC_FILES= README bigprime.cal deg.cal ellip.cal lucas.cal lucas_chk.cal \	lucas_tbl.cal mersenne.cal mod.cal nextprim.cal pell.cal pi.cal \	pollard.cal poly.cal psqrt.cal quat.cal regress.cal solve.cal \	sumsq.cal surd.cal unitfrac.cal varargs.cal chrem.cal cryrand.cal \	bindings altbind randmprime.cal test1000.calSHELL= /bin/shall: ${CALC_FILES} nextprime.cal# link nextprime.cal to nextprim.cal#nextprime.cal: nextprim.cal	rm -f nextprime.cal	ln nextprim.cal nextprime.calclean:clobber:	rm -f nextprime.calinstall: all	-@if [ ! -d ${TOPDIR} ]; then \		echo mkdir ${TOPDIR}; \		mkdir ${TOPDIR}; \	fi	-@if [ ! -d ${LIBDIR} ]; then \		echo mkdir ${LIBDIR}; \		mkdir ${LIBDIR}; \	fi	@for i in ${CALC_FILES}; do \		echo rm -f ${LIBDIR}/$$i; \		rm -f ${LIBDIR}/$$i; \		echo cp $$i ${LIBDIR}; \		cp $$i ${LIBDIR}; \		echo chmod 0444 ${LIBDIR}/$$i; \		chmod 0444 ${LIBDIR}/$$i; \	done	-rm -f ${LIBDIR}/nextprime.cal	-ln ${LIBDIR}/nextprim.cal ${LIBDIR}/nextprime.cal 

⌨️ 快捷键说明

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