📄 makefile.win32
字号:
all: client.exe server.exeRELATIVE = ..\..\..!include ..\..\MakeVars.win32INSTALL_DIR = poa\hello-2INSTALL_SRCS = Makefile client.cc server.cc hello.idlINSTALL_SCRIPTS = helloserver.exe: hello.h hello.obj server.obj $(LD) $(LDFLAGS) hello.obj server.obj $(LDLIBS) /out:server.execlient.exe: hello.h hello.obj client.obj $(LD) $(LDFLAGS) hello.obj client.obj $(LDLIBS) /out:client.exe hello.h hello.cc : hello.idl $(IDLGEN) $(IDL) --poa-ties hello.idlclean: -$(RM) /f /q 2> nul hello.cc hello.h *.o core client server *~ .depend *.exe *.obj *.pdb -$(DELETE)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -