makefile
来自「the source code from the book "UNIX Netw」· 代码 · 共 26 行
TXT
26 行
#BIN = rdate dateserverGEN = Date1_defs.h Date1.h Date1_support.c Date1_server.c Date1_client.cCLIOBJ = rdate.o Date1_client.o Date1_support.oSRVOBJ = dateserver.o Date1_server.o Date1_support.oLIB = /tmp3/stevens/xns/lib/libcourier.aRPCCOM = /tmp3/stevens/xns/bin/xnscourierCFLAGS = -I/tmp3/stevens/xns/includeall: $(BIN)$(GEN): Date.cr $(RPCCOM) Date.crdateserver: $(SRVOBJ) $(CC) -o $@ $(SRVOBJ) $(LIB)rdate: $(CLIOBJ) $(CC) -o $@ $(CLIOBJ) $(LIB)$(CLIOBJ) $(SRVOBJ): Date1_defs.hclean: rm -f $(GEN) *.o $(BIN)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?