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

📄 makefile

📁 早期freebsd实现
💻
字号:
## Copyright (c) 1988 Regents of the University of California.# All rights reserved.## Redistribution and use in source and binary forms are permitted# provided that the above copyright notice and this paragraph are# duplicated in all such forms and that any documentation,# advertising materials, and other materials related to such# distribution and use acknowledge that the software was developed# by the University of California, Berkeley.  The name of the# University may not be used to endorse or promote products derived# from this software without specific prior written permission.# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.##	@(#)makefile	8.1 (Berkeley) 6/6/93## msdos versus unix definesO	= .o#PC_O	= .objX	=#PC_X	= .exeL	=#PC_L	= -linkCC	= cc#PC_CC	= clMV	= mv#PC_MV	= renameRM	= rm -f#PC_RM= eraseLINT_ARGS =#PC_LINT_ARGS = -DLINT_ARGSDEBUG_FLAGS = -g#PC_DEBUG_FLAGS = -Zi -OdAR	= arAR1	= crAR2	=AR3	=#PC_AR	= lib#PC_AR1	=#PC_AR2	= +#PC_AR3	= ";"RANLIB	= ranlib#PC_RANLIB = echo "Done with "DEFINES = ${LINT_ARGS}CFLAGS = ${DEBUG_FLAGS} -I..PRINT = lpr -pALLC = tnrecv.cALLH = tncomp.hALLPRINT = ${ALLH} ${ALLC}ALLSOURCE = ${ALLPRINT} makefile makefile.makALLO = tnrecv$O.c.obj:	${CC} ${CFLAGS} -c $<all:	tnrecv$Xtnrecv$X:	tnrecv$O	${CC} ${CFLAGS} -o $@ tnrecv$O $L ../api/apilib.aclean:	for i in makefile.bak ${ALLO} errs tnrecv$X; \		do (${RM} $$i); done.DEFAULT:	sccs get $<sccsclean:	-sccs clean	-sccs get makefileaction:	${ACTION}print:	${PRINT} ${ALLPRINT}sourcelist:	${ALLSOURCE} tarread.exe	@for i in ${ALLSOURCE} tarread.exe; \		do (echo ${DIRPATH}$$i); donedepend:	grep '^#include' ${ALLC} | grep -v '<' | \	sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' \	    -e 's/\.c/$$O/' | \	awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \		else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \		       else rec = rec " " $$2 } } \	      END { print rec } ' > makedep	echo '$$r makedep' >>eddep	echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep	echo '$$r makedep' >>eddep	echo 'w' >>eddep	-rm -f makefile.bak	cp makefile makefile.bak	ed - makefile < eddep	rm eddep makedep# DO NOT DELETE THIS LINE#include "tncomp.h" "../api/api.h" "../ctlr/function.h" "../ctlr/hostctlr.h"#include "../ctlr/oia.h" "../ctlr/screen.h" "../apilib/disp_asc.h"#include "../apilib/astosc.h" "../general/general.h"

⌨️ 快捷键说明

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