makefile

来自「网络数据管理协议的开发」· 代码 · 共 43 行

TXT
43
字号
############################ -*- Mode: Makefile -*- ############################# Makefile## ## Description     : NDMP daemon Makefile.## ## Copyright (c) 1996,1997 PDC, Network Appliance. All Rights Reserved.#### $Id: Makefile,v 1.5 1997/02/03 06:13:03 tim Exp $## ###############################################################################.KEEP_STATE:INCLUDES = -I../commonCC = gccCFLAGS = -g $(INCLUDES) -Wall -W -Wstrict-prototypes#-Wmissing-prototypes -Wmissing-declarations SRCS = main.c handler_tbl.c connect.c scsi.c tape.c config.c data.c mover.c \       file_history.c callbacks.c \       simple.c simple_dump.c simple_restore.c util.c OBJS = $(SRCS:.c=.o)SYSLIBS = -lsocket -lnsl -lgenNDMPLIB = ../common/libndmp.aall: ndmpdndmpd: $(NDMPLIB) $(OBJS)	$(LINK.c) -o $@ $(OBJS) $(NDMPLIB) $(SYSLIBS)$(NDMPLIB): FORCE	cd $(@D); $(MAKE) $($F)FORCE:tags:	etags -t *.[ch] ../common/*.[ch]clean:	rm -f ndmpd *.o core *~ TAGS .make.state

⌨️ 快捷键说明

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