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

📄 makefile

📁 早期freebsd实现
💻
字号:
## help - makefile for calc help files## 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 NollSHELL= /bin/sh# Normally, the upper level makefile will set these values.  We provide# a default here just in case you want to build from this directory.#TOPDIR= /usr/local/lib#TOPDIR= /usr/lib#TOPDIR= /usr/libdataLIBDIR= ${TOPDIR}/calcHELPDIR= ${LIBDIR}/help# standard toolsSED= sed# Standard help files## The obj.file is special and is not listed here.#STD_HELP_FILES1= intro overview help assoc builtin command config \	define environment expression file history interrupt list matSTD_HELP_FILES2= operator statement types usage variableSTD_HELP_FILES3= todo creditSTD_HELP_FILES= ${STD_HELP_FILES1} ${STD_HELP_FILES2} ${STD_HELP_FILES3}# Help files that are constructed from other sources## The obj.file is special and is not listed here.#BUILT_HELP_FILES= bindings altbind changes libcalc stdlib bugsall: ${STD_HELP_FILES} obj.file ${BUILT_HELP_FILES} fullbindings: ../lib/bindings	rm -f bindings	cp ../lib/bindings bindings	chmod 0444 bindingsaltbind: ../lib/altbind	rm -f altbind	cp ../lib/altbind altbind	chmod 0444 altbindstdlib: ../lib/README	rm -f stdlib	cp ../lib/README stdlib	chmod 0444 stdlibchanges: ../CHANGES	rm -f changes	cp ../CHANGES changes	chmod 0444 changeslibcalc: ../LIBRARY	rm -f libcalc	${SED} -e 's:$${LIBDIR}:${LIBDIR}:g' < ../LIBRARY > libcalc	chmod 0444 libcalcbugs: ../BUGS	rm -f bugs	cp ../BUGS bugs	chmod 0444 bugsfull: ${STD_HELP_FILES} ${BUILT_HELP_FILES} Makefile	rm -f full	-for i in ${STD_HELP_FILES1} obj.file ${STD_HELP_FILES2} \	    ${BUILT_HELP_FILES} ${STD_HELP_FILES3}; do \	    if [ Xintro != X"$$i" ]; then \		echo ""; \	    fi; \	    if [ Xobj.file = X"$$i" ]; then \		j=obj; \	    else \		j=$$i; \	    fi; \	    echo "*************"; \	    echo "* $$j"; \	    echo "*************"; \	    echo ""; \	    cat $$i; \	done > fullclean:clobber:	rm -f ${BUILT_HELP_FILES} fullinstall: all	-@if [ ! -d ${TOPDIR} ]; then \		echo mkdir ${TOPDIR}; \		mkdir ${TOPDIR}; \	fi	-@if [ ! -d ${LIBDIR} ]; then \		echo mkdir ${LIBDIR}; \		mkdir ${LIBDIR}; \	fi	-@if [ ! -d ${HELPDIR} ]; then \		echo mkdir ${HELPDIR}; \		mkdir ${HELPDIR}; \	fi	@for i in ${STD_HELP_FILES} ${BUILT_HELP_FILES} full; do \		echo rm -f ${HELPDIR}/$$i; \		rm -f ${HELPDIR}/$$i; \		echo cp $$i ${HELPDIR}; \		cp $$i ${HELPDIR}; \		echo chmod 0444 ${HELPDIR}/$$i; \		chmod 0444 ${HELPDIR}/$$i; \	done	rm -f ${HELPDIR}/obj	cp obj.file ${HELPDIR}/obj	chmod 0444 ${HELPDIR}/obj

⌨️ 快捷键说明

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