proactor_multiple_loops.bor

来自「ACE编程的一本经典BIBLE的源代码,喜欢网络编程的别错过」· BOR 代码 · 共 50 行

BOR
50
字号
# Makefile for building the test_multiple_loops exe with Borland C++ Make



NAME = test_multiple_loops



NO_FULL_PATH=1



OBJFILES = \

	$(OBJDIR)\test_multiple_loops.$(OBJ_EXT)



LFLAGS = \

        -L"." \

        -j"."  \

        -L"..\..\..\lib" \

        -j"..\..\..\lib" 



LIBFILES = \

	ACE$(LIB_DECORATOR).lib \

	$(DUMMY_VALUE_NOT_ENDING_IN_BACKSLASH)



!ifdef STATIC

LIB_FLAGS = \

        -DACE_AS_STATIC_LIBS

!else

!endif



CFLAGS = \

	-I"..\..\.." \

	$(LIB_FLAGS) \

	$(DLL_FLAGS)



CPPDIR = .

CDIR   = .



INCDIR_NAME = examples\Reactor\Proactor



#

# Override defaults in outputdir.bor

#

INCLUDES_INSTALL=1



BASE_BINDIR = .



!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>



includes_install: $(INCLUDES)

	-@if not exist $(INSTALL_DIR)\include\$(INCDIR_NAME)\. mkdir $(INSTALL_DIR)\include\$(INCDIR_NAME)\.

	-&copy /Y test_cancel.h $(INSTALL_DIR)\include\$(INCDIR_NAME)\test_cancel.h 1> NUL

	-@if not exist $(INSTALL_DIR)\include\$(INCDIR_NAME)\. mkdir $(INSTALL_DIR)\include\$(INCDIR_NAME)\.

	-&copy /Y test_proactor.h $(INSTALL_DIR)\include\$(INCDIR_NAME)\test_proactor.h 1> NUL

⌨️ 快捷键说明

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