makefile

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 代码 · 共 89 行

TXT
89
字号
###############################################################################    Instructions to Make, for compilation of ZOT UIP/utility processes##	This file is automatically generated.  Do not edit!# @(#)$Id: zotnetM,v 1.2 90/11/25 18:56:49 sharpe Exp $############################################################################### The following entries were inserted during MH configurationOPTIONS	=	-DISI -DMHRC -DWHATNOW -DMHE -DBSD42 -DBERK -DNETWORK -DBIND -DRPATHS -DDPOP -DRPOP -DFOLDPROT='"0700"' -DMSGPROT='"0600"' -DTYPESIG='void' -DPOPSERVICE='"pop"' -DSPRINTF='int' -DSENDMTS -DSMTP -DPOP -DX400 -OCC	=	ccCFLAGS	=	$(OPTIONS) -I.LFLAGS	=	-bhu $(OPTIONS) -I.LIB	=	libzot.aLLIB	=	llib-lzotnetOFILES	=	mts/mts.o mts/lock.o mts/client.o mf/mf.o \		bboards/getbbent.o \		tws/dtime.o tws/dtimep.o tws/lexstring.oMAKE	=	make DESTDIR=$(DESTDIR) $(MFLAGS)SHELL	=	/bin/shDIRS	=	mts bboards tws mf###############################################################################	Generation Rules##############################################################################.c.o:;		$(CC) $(CFLAGS) -c $*.c		-ld -x -r $@		mv a.out $@.c:;		echo $@###############################################################################	Generate ZOTnet subroutine library##############################################################################all:		allaux $(LIB)$(LIB):		$(OFILES)		-mv $@ z$@		ar r $@ $(OFILES); ranlib $@		-@ls -l $@		-@echo "ZOTnet library built normally"allaux:;	for d in $(DIRS); do (cd $$d; $(MAKE) all); donedepend:;	for d in $(DIRS); do (cd $$d; $(MAKE) depend); donelint:;		for d in $(DIRS); do (cd $$d; $(MAKE) lint); done###############################################################################	Installation##############################################################################install:	inst-all cleaninst-all:;	for d in $(DIRS); do (cd $$d; $(MAKE) inst-all); donetar:;		@for d in $(DIRS); \		    do (cd $$d; $(MAKE) TFLAGS="$(TFLAGS)" tar); doneuninstall:;	for d in $(DIRS); do (cd $$d; $(MAKE) uninstall); done###############################################################################	Miscellaneous tasks##############################################################################unconfig:;	-rm -f $(LIB) z$(LIB) _* :* *.o core		for d in $(DIRS); do (cd $$d; $(MAKE) unconfig); done		-rm -f Makefiledistribution:;	-rm -f $(LIB) z$(LIB) _* :*		for d in $(DIRS); do (cd $$d; $(MAKE) distribution); doneclean:;		-rm -f $(LIB) z$(LIB) _* :* *.o core		for d in $(DIRS); do (cd $$d; $(MAKE) clean); doneunclean:;	-rm -f z$(LIB) _* :* core		for d in $(DIRS); do (cd $$d; $(MAKE) unclean); done

⌨️ 快捷键说明

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