L4Re/departure

tests/Makefile

263:9edfe5795697
2022-02-19 Paul Boddie Moved input-related functions into a separate module.
     1 PKGDIR		?= .     2 L4DIR		?= $(PKGDIR)/../../..     3      4 TARGET		= \     5 		dstest_block_client dstest_block_client_simple \     6 		dstest_ext2fs_client \     7 		dstest_file_access \     8 		dstest_file_client \     9 		dstest_file_monitor \    10 		dstest_file_readdir \    11 		dstest_file_readdir_concurrent \    12 		dstest_file_rename \    13 		dstest_host_client \    14 		dstest_pipe_client \    15 		dstest_test_client    16     17 MODE            = static    18     19 SRC_CC_dstest_block_client		= dstest_block_client.cc    20     21 SRC_CC_dstest_block_client_simple	= dstest_block_client_simple.cc    22     23 SRC_CC_dstest_ext2fs_client		= dstest_ext2fs_client.cc    24     25 SRC_CC_dstest_file_access		= dstest_file_access.cc    26     27 SRC_CC_dstest_file_client		= dstest_file_client.cc    28     29 SRC_CC_dstest_file_monitor		= dstest_file_monitor.cc    30     31 SRC_CC_dstest_file_readdir		= dstest_file_readdir.cc    32     33 SRC_CC_dstest_file_readdir_concurrent	= dstest_file_readdir_concurrent.cc    34     35 SRC_CC_dstest_file_rename		= dstest_file_rename.cc    36     37 SRC_CC_dstest_host_client		= dstest_host_client.cc    38     39 SRC_CC_dstest_pipe_client		= dstest_pipe_client.cc    40     41 SRC_CC_dstest_test_client		= dstest_test_client.cc    42     43 REQUIRES_LIBS	= l4re_c-util libfsclient libmem libipc libstdc++ libsystypes libe2access_blockserver    44     45 include $(L4DIR)/mk/prog.mk