📄 makefile
字号:
all: .depend client serverDIR_PREFIX=../include ../../MakeVarsINSTALL_DIR = ccm/helloINSTALL_SRCS = README Makefile client.cc hello.idl hello_impl.ccINSTALL_SCRIPTS = helloclient: client.o hello.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) -o $@ client.o hello.o -lmicoccm$(VERSION) -lmicocoss$(VERSION) $(LDLIBS)server: hello_impl.o hello_ccm.o hello.o $(DEPS) $(LD) $(CXXFLAGS) $(LDFLAGS) -o $@ hello_impl.o hello_ccm.o hello.o -lmicoccm$(VERSION) -lmicocoss$(VERSION) $(LDLIBS)run: helloclean: $(RM) client server $(RM) hello_ccm.cc hello_ccm.h $(RM) hello.cc hello.h $(RM) *.o *~ core *.ior .dependclient.o: client.cc hello.hhello.o: hello.cchello_impl.o: hello_impl.cc hello_ccm.h hello.hhello_ccm.o: hello_ccm.cchello_ccm.cc hello_ccm.h: hello.idl $(CCMGEN) --standalone $^hello.cc hello.h: hello.idl $(IDL) $(IDLFLAGS) $^
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -