makefile

来自「开源CORBA中间件」· 代码 · 共 26 行

TXT
26
字号
all: .depend client serverDIR_PREFIX=../include ../../MakeVarsINSTALL_DIR     = csiv2/tls-identity-1INSTALL_SRCS    = Makefile client.cc server.cc hello.idl s_cert.pem s_key.pem c_cert.pem c_key.pem ca_cert.pemINSTALL_SCRIPTS = helloserver: hello.h hello.o server.o $(DEPS)	$(LD) $(CXXFLAGS) $(LDFLAGS) hello.o server.o $(LDLIBS) -o serverclient: hello.h hello.o client.o $(DEPS)	$(LD) $(CXXFLAGS) $(LDFLAGS) hello.o client.o $(LDLIBS) -o client hello.h hello.cc : hello.idl $(IDLGEN)	$(IDL) hello.idlrun:	helloclean:	rm -f hello.cc hello.h hello.ref *.o core client server *~ .depend

⌨️ 快捷键说明

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