📄 makefile
字号:
all: .depend client serverDIR_PREFIX=../include ../../MakeVarsINSTALL_DIR = obv/abstractINSTALL_SRCS = README Makefile client.cc server.cc abstract.idl \ abstract_impl.hINSTALL_SCRIPTS = abstractserver: abstract.h abstract_impl.h abstract.o server.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) abstract.o server.o $(LDLIBS) -o serverclient: abstract.h abstract_impl.h abstract.o client.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) abstract.o client.o $(LDLIBS) -o client abstract.h abstract.cc : abstract.idl $(IDLGEN) $(IDL) abstract.idlrun: abstractclean: rm -f abstract.cc abstract.h rm -f *.o core client server *~ *.ref .depend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -