1# 2# Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) 3# 4# Distributed under the Boost Software License, Version 1.0. (See accompanying 5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6# 7 8lib socket ; # SOLARIS 9lib nsl ; # SOLARIS 10lib ws2_32 ; # NT 11lib mswsock ; # NT 12lib ipv6 ; # HPUX 13lib network ; # HAIKU 14 15project 16 : requirements 17 <library>/boost/system//boost_system 18 <library>/boost/chrono//boost_chrono 19 <library>/boost/thread//boost_thread 20 <define>BOOST_ALL_NO_LIB=1 21 <threading>multi 22 <target-os>solaris:<library>socket 23 <target-os>solaris:<library>nsl 24 <target-os>windows:<define>_WIN32_WINNT=0x0501 25 <target-os>windows,<toolset>gcc:<library>ws2_32 26 <target-os>windows,<toolset>gcc:<library>mswsock 27 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS 28 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED 29 <target-os>hpux:<library>ipv6 30 <target-os>haiku:<library>network 31 ; 32 33obj timer1.obj : timer1/timer.cpp ; 34exe timer1 : timer1.obj ; 35 36obj timer2.obj : timer2/timer.cpp ; 37exe timer2 : timer2.obj ; 38 39obj timer3.obj : timer3/timer.cpp ; 40exe timer3 : timer3.obj ; 41 42obj timer4.obj : timer4/timer.cpp ; 43exe timer4 : timer4.obj ; 44 45obj timer5.obj : timer5/timer.cpp ; 46exe timer5 : timer5.obj ; 47 48obj daytime1_client.obj : daytime1/client.cpp ; 49exe daytime1_client : daytime1_client.obj ; 50 51obj daytime2_server.obj : daytime2/server.cpp ; 52exe daytime2_server : daytime2_server.obj ; 53 54obj daytime3_server.obj : daytime3/server.cpp ; 55exe daytime3_server : daytime3_server.obj ; 56 57obj daytime4_client.obj : daytime4/client.cpp ; 58exe daytime4_client : daytime4_client.obj ; 59 60obj daytime5_server.obj : daytime5/server.cpp ; 61exe daytime5_server : daytime5_server.obj ; 62 63obj daytime6_server.obj : daytime6/server.cpp ; 64exe daytime6_server : daytime6_server.obj ; 65 66obj daytime7_server.obj : daytime7/server.cpp ; 67exe daytime7_server : daytime7_server.obj ; 68