mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-05-20 01:47:12 +02:00
534 lines
18 KiB
Makefile
534 lines
18 KiB
Makefile
!ifndef BOOSTDIR
|
|
BOOSTDIR = ../../boost_1_34_1
|
|
!endif
|
|
|
|
COMMON_CXXFLAGS = -nologo -EHac -GR -I. -I../include
|
|
|
|
!ifdef CXXLATEST
|
|
STD_CXXFLAGS = -std:c++latest -permissive-
|
|
!endif
|
|
|
|
!ifdef WARNINGS
|
|
WARNINGS_CXXFLAGS = -W4 -wd4512 -wd4447
|
|
!endif
|
|
|
|
!ifdef STATICRTL
|
|
! ifdef DEBUG
|
|
DEBUG_CXXFLAGS = -Zi -MTd
|
|
! else
|
|
DEBUG_CXXFLAGS = -O2 -MT
|
|
! endif
|
|
!else
|
|
! ifdef DEBUG
|
|
DEBUG_CXXFLAGS = -Zi -MDd
|
|
! else
|
|
DEBUG_CXXFLAGS = -O2 -MD
|
|
! endif
|
|
!endif
|
|
|
|
!ifdef UNICODE
|
|
UNICODE_CXXFLAGS = -DUNICODE -D_UNICODE
|
|
!endif
|
|
|
|
!ifdef TRACKING
|
|
TRACKING_CXXFLAGS = -DASIO_ENABLE_HANDLER_TRACKING
|
|
!endif
|
|
|
|
!ifndef _WIN32_WINNT
|
|
! ifdef STORE
|
|
_WIN32_WINNT=0x0603
|
|
! else
|
|
_WIN32_WINNT=0x0601
|
|
! endif
|
|
!endif
|
|
|
|
!ifdef WIN9X
|
|
DEFINES = \
|
|
-DASIO_DISABLE_IOCP \
|
|
-D_WIN32_WINNT=$(_WIN32_WINNT) \
|
|
-DBOOST_ALL_NO_LIB \
|
|
-DBOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
|
|
!else
|
|
! ifdef STORE
|
|
DEFINES = \
|
|
-DWINAPI_FAMILY=WINAPI_FAMILY_PC_APP \
|
|
-DBOOST_ALL_NO_LIB -D_WIN32_WINNT=$(_WIN32_WINNT) \
|
|
-DUNICODE -D_UNICODE \
|
|
-DBOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
|
|
! else
|
|
! ifdef WINRT
|
|
DEFINES = \
|
|
-ZW -FI SDKDDKVer.h -FI winapifamily.h -DWINAPI_FAMILY=WINAPI_PARTITION_APP \
|
|
-DBOOST_ALL_NO_LIB \
|
|
-DBOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
|
|
! else
|
|
DEFINES = \
|
|
-D_WIN32_WINNT=$(_WIN32_WINNT) \
|
|
-DBOOST_ALL_NO_LIB \
|
|
-DBOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
|
|
! endif
|
|
! endif
|
|
!endif
|
|
|
|
!ifdef SEPARATE_COMPILATION
|
|
LIBS = asio.lib
|
|
SEPARATE_COMPILATION_CXXFLAGS = \
|
|
-DASIO_SEPARATE_COMPILATION \
|
|
-DASIO_ENABLE_CANCELIO
|
|
!endif
|
|
|
|
!ifdef STANDALONE
|
|
STANDALONE_CXXFLAGS = -DASIO_STANDALONE
|
|
!else
|
|
STANDALONE_CXXFLAGS = -I$(BOOSTDIR) -DASIO_ENABLE_BOOST
|
|
!endif
|
|
|
|
CXXFLAGS = \
|
|
$(COMMON_CXXFLAGS) \
|
|
$(STD_CXXFLAGS) \
|
|
$(WARNINGS_CXXFLAGS) \
|
|
$(DEBUG_CXXFLAGS) \
|
|
$(UNICODE_CXXFLAGS) \
|
|
$(TRACKING_CXXFLAGS) \
|
|
$(SEPARATE_COMPILATION_CXXFLAGS) \
|
|
$(STANDALONE_CXXFLAGS)
|
|
|
|
!ifndef SSLDIR
|
|
SSLDIR = ../../openssl-0.9.8g
|
|
!endif
|
|
|
|
SSL_CXXFLAGS = -I$(SSLDIR)/inc32
|
|
|
|
SSL_LIBS = \
|
|
$(SSLDIR)/out32/libeay32.lib \
|
|
$(SSLDIR)/out32/ssleay32.lib \
|
|
user32.lib advapi32.lib gdi32.lib
|
|
|
|
LATENCY_TEST_EXES = \
|
|
tests\latency\tcp_client.exe \
|
|
tests\latency\tcp_server.exe \
|
|
tests\latency\udp_client.exe \
|
|
tests\latency\udp_server.exe
|
|
|
|
PERFORMANCE_TEST_EXES = \
|
|
tests\performance\client.exe \
|
|
tests\performance\server.exe
|
|
|
|
UNIT_TEST_EXES = \
|
|
tests\unit\associated_allocator.exe \
|
|
tests\unit\associated_executor.exe \
|
|
tests\unit\async_result.exe \
|
|
tests\unit\awaitable.exe \
|
|
tests\unit\basic_datagram_socket.exe \
|
|
tests\unit\basic_deadline_timer.exe \
|
|
tests\unit\basic_raw_socket.exe \
|
|
tests\unit\basic_seq_packet_socket.exe \
|
|
tests\unit\basic_serial_port.exe \
|
|
tests\unit\basic_signal_set.exe \
|
|
tests\unit\basic_socket.exe \
|
|
tests\unit\basic_socket_acceptor.exe \
|
|
tests\unit\basic_stream_socket.exe \
|
|
tests\unit\basic_streambuf.exe \
|
|
tests\unit\basic_waitable_timer.exe \
|
|
tests\unit\bind_executor.exe \
|
|
tests\unit\buffered_read_stream.exe \
|
|
tests\unit\buffered_stream.exe \
|
|
tests\unit\buffered_write_stream.exe \
|
|
tests\unit\buffer.exe \
|
|
tests\unit\buffers_iterator.exe \
|
|
tests\unit\co_spawn.exe \
|
|
tests\unit\completion_condition.exe \
|
|
tests\unit\compose.exe \
|
|
tests\unit\connect.exe \
|
|
tests\unit\coroutine.exe \
|
|
tests\unit\deadline_timer.exe \
|
|
tests\unit\defer.exe \
|
|
tests\unit\detached.exe \
|
|
tests\unit\dispatch.exe \
|
|
tests\unit\error.exe \
|
|
tests\unit\execution_context.exe \
|
|
tests\unit\execution\any_executor.exe \
|
|
tests\unit\execution\blocking.exe \
|
|
tests\unit\execution\blocking_adaptation.exe \
|
|
tests\unit\execution\bulk_execute.exe \
|
|
tests\unit\execution\bulk_guarantee.exe \
|
|
tests\unit\execution\connect.exe \
|
|
tests\unit\execution\context_as.exe \
|
|
tests\unit\execution\execute.exe \
|
|
tests\unit\execution\executor.exe \
|
|
tests\unit\execution\invocable_archetype.exe \
|
|
tests\unit\execution\mapping.exe \
|
|
tests\unit\execution\operation_state.exe \
|
|
tests\unit\execution\outstanding_work.exe \
|
|
tests\unit\execution\prefer_only.exe \
|
|
tests\unit\execution\receiver.exe \
|
|
tests\unit\execution\relationship.exe \
|
|
tests\unit\execution\schedule.exe \
|
|
tests\unit\execution\scheduler.exe \
|
|
tests\unit\execution\sender.exe \
|
|
tests\unit\execution\set_done.exe \
|
|
tests\unit\execution\set_error.exe \
|
|
tests\unit\execution\set_value.exe \
|
|
tests\unit\execution\start.exe \
|
|
tests\unit\execution\submit.exe \
|
|
tests\unit\executor.exe \
|
|
tests\unit\executor_work_guard.exe \
|
|
tests\unit\generic\basic_endpoint.exe \
|
|
tests\unit\generic\datagram_protocol.exe \
|
|
tests\unit\generic\raw_protocol.exe \
|
|
tests\unit\generic\seq_packet_protocol.exe \
|
|
tests\unit\generic\stream_protocol.exe \
|
|
tests\unit\high_resolution_timer.exe \
|
|
tests\unit\io_context.exe \
|
|
tests\unit\io_context_strand.exe \
|
|
tests\unit\ip\address.exe \
|
|
tests\unit\ip\address_v4.exe \
|
|
tests\unit\ip\address_v4_iterator.exe \
|
|
tests\unit\ip\address_v4_range.exe \
|
|
tests\unit\ip\address_v6.exe \
|
|
tests\unit\ip\address_v6_iterator.exe \
|
|
tests\unit\ip\address_v6_range.exe \
|
|
tests\unit\ip\basic_endpoint.exe \
|
|
tests\unit\ip\basic_resolver.exe \
|
|
tests\unit\ip\basic_resolver_entry.exe \
|
|
tests\unit\ip\basic_resolver_iterator.exe \
|
|
tests\unit\ip\basic_resolver_query.exe \
|
|
tests\unit\ip\host_name.exe \
|
|
tests\unit\ip\icmp.exe \
|
|
tests\unit\ip\multicast.exe \
|
|
tests\unit\ip\network_v4.exe \
|
|
tests\unit\ip\network_v6.exe \
|
|
tests\unit\ip\resolver_query_base.exe \
|
|
tests\unit\ip\tcp.exe \
|
|
tests\unit\ip\udp.exe \
|
|
tests\unit\ip\unicast.exe \
|
|
tests\unit\ip\v6_only.exe \
|
|
tests\unit\local\basic_endpoint.exe \
|
|
tests\unit\local\connect_pair.exe \
|
|
tests\unit\local\datagram_protocol.exe \
|
|
tests\unit\local\stream_protocol.exe \
|
|
tests\unit\is_read_buffered.exe \
|
|
tests\unit\is_write_buffered.exe \
|
|
tests\unit\packaged_task.exe \
|
|
tests\unit\placeholders.exe \
|
|
tests\unit\post.exe \
|
|
tests\unit\read.exe \
|
|
tests\unit\read_at.exe \
|
|
tests\unit\read_until.exe \
|
|
tests\unit\redirect_error.exe \
|
|
tests\unit\serial_port.exe \
|
|
tests\unit\serial_port_base.exe \
|
|
tests\unit\signal_set.exe \
|
|
tests\unit\socket_base.exe \
|
|
tests\unit\static_thread_pool.exe \
|
|
tests\unit\steady_timer.exe \
|
|
tests\unit\strand.exe \
|
|
tests\unit\streambuf.exe \
|
|
tests\unit\system_context.exe \
|
|
tests\unit\system_executor.exe \
|
|
tests\unit\system_timer.exe \
|
|
tests\unit\this_coro.exe \
|
|
tests\unit\thread.exe \
|
|
tests\unit\thread_pool.exe \
|
|
tests\unit\time_traits.exe \
|
|
tests\unit\ts\buffer.exe \
|
|
tests\unit\ts\executor.exe \
|
|
tests\unit\ts\internet.exe \
|
|
tests\unit\ts\io_context.exe \
|
|
tests\unit\ts\net.exe \
|
|
tests\unit\ts\netfwd.exe \
|
|
tests\unit\ts\socket.exe \
|
|
tests\unit\ts\timer.exe \
|
|
tests\unit\use_awaitable.exe \
|
|
tests\unit\use_future.exe \
|
|
tests\unit\uses_executor.exe \
|
|
tests\unit\wait_traits.exe \
|
|
tests\unit\windows\basic_object_handle.exe \
|
|
tests\unit\windows\basic_overlapped_handle.exe \
|
|
tests\unit\windows\basic_random_access_handle.exe \
|
|
tests\unit\windows\basic_stream_handle.exe \
|
|
tests\unit\windows\object_handle.exe \
|
|
tests\unit\windows\overlapped_handle.exe \
|
|
tests\unit\windows\overlapped_ptr.exe \
|
|
tests\unit\windows\random_access_handle.exe \
|
|
tests\unit\windows\stream_handle.exe \
|
|
tests\unit\write.exe \
|
|
tests\unit\write_at.exe
|
|
|
|
CPP03_EXAMPLE_EXES = \
|
|
examples\cpp03\allocation\server.exe \
|
|
examples\cpp03\buffers\reference_counted.exe \
|
|
examples\cpp03\chat\chat_client.exe \
|
|
examples\cpp03\chat\chat_server.exe \
|
|
examples\cpp03\echo\async_tcp_echo_server.exe \
|
|
examples\cpp03\echo\async_udp_echo_server.exe \
|
|
examples\cpp03\echo\blocking_tcp_echo_client.exe \
|
|
examples\cpp03\echo\blocking_tcp_echo_server.exe \
|
|
examples\cpp03\echo\blocking_udp_echo_client.exe \
|
|
examples\cpp03\echo\blocking_udp_echo_server.exe \
|
|
examples\cpp03\http\client\async_client.exe \
|
|
examples\cpp03\http\client\sync_client.exe \
|
|
examples\cpp03\http\server\http_server.exe \
|
|
examples\cpp03\http\server2\http_server.exe \
|
|
examples\cpp03\http\server3\http_server.exe \
|
|
examples\cpp03\http\server4\http_server.exe \
|
|
examples\cpp03\icmp\ping.exe \
|
|
examples\cpp03\invocation\prioritised_handlers.exe \
|
|
examples\cpp03\iostreams\daytime_client.exe \
|
|
examples\cpp03\iostreams\daytime_server.exe \
|
|
examples\cpp03\iostreams\http_client.exe \
|
|
examples\cpp03\multicast\receiver.exe \
|
|
examples\cpp03\multicast\sender.exe \
|
|
examples\cpp03\nonblocking\third_party_lib.exe \
|
|
examples\cpp03\porthopper\client.exe \
|
|
examples\cpp03\porthopper\server.exe \
|
|
examples\cpp03\services\daytime_client.exe \
|
|
examples\cpp03\socks4\sync_client.exe \
|
|
examples\cpp03\timeouts\async_tcp_client.exe \
|
|
examples\cpp03\timeouts\blocking_tcp_client.exe \
|
|
examples\cpp03\timeouts\blocking_token_tcp_client.exe \
|
|
examples\cpp03\timeouts\blocking_udp_client.exe \
|
|
examples\cpp03\timeouts\server.exe \
|
|
examples\cpp03\timers\time_t_timer.exe \
|
|
examples\cpp03\tutorial\timer1\timer.exe \
|
|
examples\cpp03\tutorial\timer2\timer.exe \
|
|
examples\cpp03\tutorial\timer3\timer.exe \
|
|
examples\cpp03\tutorial\timer4\timer.exe \
|
|
examples\cpp03\tutorial\timer5\timer.exe \
|
|
examples\cpp03\tutorial\daytime1\client.exe \
|
|
examples\cpp03\tutorial\daytime2\server.exe \
|
|
examples\cpp03\tutorial\daytime3\server.exe \
|
|
examples\cpp03\tutorial\daytime4\client.exe \
|
|
examples\cpp03\tutorial\daytime5\server.exe \
|
|
examples\cpp03\tutorial\daytime6\server.exe \
|
|
examples\cpp03\tutorial\daytime7\server.exe \
|
|
examples\cpp03\windows\transmit_file.exe
|
|
|
|
SSL_UNIT_TEST_EXES = \
|
|
tests\unit\ssl\basic_context.exe \
|
|
tests\unit\ssl\context.exe \
|
|
tests\unit\ssl\context_base.exe \
|
|
tests\unit\ssl\context_service.exe \
|
|
tests\unit\ssl\rfc2818_verification.exe \
|
|
tests\unit\ssl\stream.exe \
|
|
tests\unit\ssl\stream_base.exe \
|
|
tests\unit\ssl\stream_service.exe
|
|
|
|
SSL_EXAMPLE_EXES = \
|
|
examples\cpp03\ssl\client.exe \
|
|
examples\cpp03\ssl\server.exe
|
|
|
|
!ifdef SEPARATE_COMPILATION
|
|
all: asio.lib
|
|
asio.lib: asio.cpp
|
|
cl -Fe$@ -Foasio.obj $(CXXFLAGS) $(DEFINES) -c asio.cpp
|
|
lib -name:asio.lib asio.obj
|
|
!endif
|
|
|
|
!ifdef STANDALONE
|
|
all: \
|
|
$(UNIT_TEST_EXES)
|
|
!else
|
|
all: \
|
|
$(LATENCY_TEST_EXES) \
|
|
$(PERFORMANCE_TEST_EXES) \
|
|
$(UNIT_TEST_EXES) \
|
|
$(CPP03_EXAMPLE_EXES)
|
|
!endif
|
|
|
|
ssl: \
|
|
$(SSL_UNIT_TEST_EXES) \
|
|
$(SSL_EXAMPLE_EXES)
|
|
|
|
check: $(UNIT_TEST_EXES)
|
|
!@echo === Running $** === && $** && echo.
|
|
|
|
{tests\latency}.cpp{tests\latency}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\performance}.cpp{tests\performance}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
tests\unit\unit_test.obj: tests\unit\unit_test.cpp
|
|
cl -Fe$@ -Fotests\unit\unit_test.obj $(CXXFLAGS) $(DEFINES) -c tests\unit\unit_test.cpp
|
|
|
|
{tests\unit}.cpp{tests\unit}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\execution}.cpp{tests\unit\execution}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\generic}.cpp{tests\unit\generic}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\ip}.cpp{tests\unit\ip}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\local}.cpp{tests\unit\local}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\ssl}.cpp{tests\unit\ssl}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(SSL_CXXFLAGS) $(DEFINES) $< $(SSL_LIBS) $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\ts}.cpp{tests\unit\ts}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{tests\unit\windows}.cpp{tests\unit\windows}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\allocation}.cpp{examples\cpp03\allocation}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\buffers}.cpp{examples\cpp03\buffers}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\chat}.cpp{examples\cpp03\chat}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\echo}.cpp{examples\cpp03\echo}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\http\client}.cpp{examples\cpp03\http\client}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\icmp}.cpp{examples\cpp03\icmp}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\invocation}.cpp{examples\cpp03\invocation}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\iostreams}.cpp{examples\cpp03\iostreams}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\multicast}.cpp{examples\cpp03\multicast}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\nonblocking}.cpp{examples\cpp03\nonblocking}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\porthopper}.cpp{examples\cpp03\porthopper}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\socks4}.cpp{examples\cpp03\socks4}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\ssl}.cpp{examples\cpp03\ssl}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(SSL_CXXFLAGS) $(DEFINES) $< $(SSL_LIBS) $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\timeouts}.cpp{examples\cpp03\timeouts}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\timers}.cpp{examples\cpp03\timers}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\timer1}.cpp{examples\cpp03\tutorial\timer1}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\timer2}.cpp{examples\cpp03\tutorial\timer2}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\timer3}.cpp{examples\cpp03\tutorial\timer3}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\timer4}.cpp{examples\cpp03\tutorial\timer4}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\timer5}.cpp{examples\cpp03\tutorial\timer5}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime1}.cpp{examples\cpp03\tutorial\daytime1}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime2}.cpp{examples\cpp03\tutorial\daytime2}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime3}.cpp{examples\cpp03\tutorial\daytime3}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime4}.cpp{examples\cpp03\tutorial\daytime4}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime5}.cpp{examples\cpp03\tutorial\daytime5}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime6}.cpp{examples\cpp03\tutorial\daytime6}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\tutorial\daytime7}.cpp{examples\cpp03\tutorial\daytime7}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp03\windows}.cpp{examples\cpp03\windows}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp11\executors}.cpp{examples\cpp11\executors}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp11\operations}.cpp{examples\cpp11\operations}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
{examples\cpp14\operations}.cpp{examples\cpp14\operations}.exe:
|
|
cl -Fe$@ -Fo$(<:.cpp=.obj) $(CXXFLAGS) $(DEFINES) $< $(LIBS) -link -opt:ref
|
|
|
|
examples\cpp03\http\server\http_server.exe: \
|
|
examples\cpp03\http\server\connection.cpp \
|
|
examples\cpp03\http\server\connection_manager.cpp \
|
|
examples\cpp03\http\server\main.cpp \
|
|
examples\cpp03\http\server\mime_types.cpp \
|
|
examples\cpp03\http\server\reply.cpp \
|
|
examples\cpp03\http\server\request_handler.cpp \
|
|
examples\cpp03\http\server\request_parser.cpp \
|
|
examples\cpp03\http\server\server.cpp
|
|
cl -Fe$@ -Foexamples\cpp03\http\server\ $(CXXFLAGS) $(DEFINES) $** $(LIBS) -link -opt:ref
|
|
|
|
examples\cpp03\http\server2\http_server.exe: \
|
|
examples\cpp03\http\server2\connection.cpp \
|
|
examples\cpp03\http\server2\io_context_pool.cpp \
|
|
examples\cpp03\http\server2\main.cpp \
|
|
examples\cpp03\http\server2\mime_types.cpp \
|
|
examples\cpp03\http\server2\reply.cpp \
|
|
examples\cpp03\http\server2\request_handler.cpp \
|
|
examples\cpp03\http\server2\request_parser.cpp \
|
|
examples\cpp03\http\server2\server.cpp
|
|
cl -Fe$@ -Foexamples\cpp03\http\server2\ $(CXXFLAGS) $(DEFINES) $** $(LIBS) -link -opt:ref
|
|
|
|
examples\cpp03\http\server3\http_server.exe: \
|
|
examples\cpp03\http\server3\connection.cpp \
|
|
examples\cpp03\http\server3\main.cpp \
|
|
examples\cpp03\http\server3\mime_types.cpp \
|
|
examples\cpp03\http\server3\reply.cpp \
|
|
examples\cpp03\http\server3\request_handler.cpp \
|
|
examples\cpp03\http\server3\request_parser.cpp \
|
|
examples\cpp03\http\server3\server.cpp
|
|
cl -Fe$@ -Foexamples\cpp03\http\server3\ $(CXXFLAGS) $(DEFINES) $** $(LIBS) -link -opt:ref
|
|
|
|
examples\cpp03\http\server4\http_server.exe: \
|
|
examples\cpp03\http\server4\file_handler.cpp \
|
|
examples\cpp03\http\server4\main.cpp \
|
|
examples\cpp03\http\server4\mime_types.cpp \
|
|
examples\cpp03\http\server4\reply.cpp \
|
|
examples\cpp03\http\server4\request_parser.cpp \
|
|
examples\cpp03\http\server4\server.cpp
|
|
cl -Fe$@ -Foexamples\cpp03\http\server4\ $(CXXFLAGS) $(DEFINES) $** $(LIBS) -link -opt:ref
|
|
|
|
examples\cpp03\services\daytime_client.exe: \
|
|
examples\cpp03\services\daytime_client.cpp \
|
|
examples\cpp03\services\logger_service.cpp
|
|
cl -Fe$@ -Foexamples\cpp03\services\ $(CXXFLAGS) $(DEFINES) $** $(LIBS) -link -opt:ref
|
|
|
|
clean:
|
|
-del /q /s asio.lib
|
|
-del /q /s asio.obj
|
|
-del /q /s tests\*.exe
|
|
-del /q /s tests\*.exe.manifest
|
|
-del /q /s tests\*.exp
|
|
-del /q /s tests\*.ilk
|
|
-del /q /s tests\*.pdb
|
|
-del /q /s tests\*.obj
|
|
-del /q /s examples\*.exe
|
|
-del /q /s examples\*.exe.manifest
|
|
-del /q /s examples\*.exp
|
|
-del /q /s examples\*.ilk
|
|
-del /q /s examples\*.pdb
|
|
-del /q /s examples\*.obj
|
|
-del /q /s *.pdb
|