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 dstest_map_test \ 17 dstest_exec 18 19 MODE = static 20 21 # Locations for interface input and generated output. 22 23 IDL_DIR = $(PKGDIR)/../libsystypes/idl 24 IDL_MK_DIR = $(L4DIR)/idl4re/mk 25 IDL_BUILD_DIR = . 26 IDL_EXPORT_DIR = . 27 28 include $(IDL_MK_DIR)/idl.mk 29 30 # Compound interfaces. 31 32 pager_object_NAME = PagerObject 33 pager_object_INTERFACES = region_mapper system_pager 34 35 COMP_INTERFACES_CC = pager_object 36 37 # Individual interfaces. 38 39 SERVER_INTERFACES_CC = $(call common_interfaces,$(COMP_INTERFACES_CC)) 40 41 # Generated and plain source files. 42 43 SERVER_INTERFACES_SRC_CC = $(call interfaces_to_server_cc,$(SERVER_INTERFACES_CC) $(COMP_INTERFACES_CC)) 44 45 # Normal source files. 46 47 SRC_CC_dstest_block_client = dstest_block_client.cc 48 49 SRC_CC_dstest_block_client_simple = dstest_block_client_simple.cc 50 51 SRC_CC_dstest_ext2fs_client = dstest_ext2fs_client.cc 52 53 SRC_CC_dstest_file_access = dstest_file_access.cc 54 55 SRC_CC_dstest_file_client = dstest_file_client.cc 56 57 SRC_CC_dstest_file_monitor = dstest_file_monitor.cc 58 59 SRC_CC_dstest_file_readdir = dstest_file_readdir.cc 60 61 SRC_CC_dstest_file_readdir_concurrent = dstest_file_readdir_concurrent.cc 62 63 SRC_CC_dstest_file_rename = dstest_file_rename.cc 64 65 SRC_CC_dstest_host_client = dstest_host_client.cc 66 67 SRC_CC_dstest_pipe_client = dstest_pipe_client.cc 68 69 SRC_CC_dstest_test_client = dstest_test_client.cc 70 71 PLAIN_SRC_CC_dstest_exec = dstest_exec.cc 72 SRC_CC_dstest_exec = $(PLAIN_SRC_CC_dstest_exec) $(SERVER_INTERFACES_SRC_CC) 73 74 REQUIRES_LIBS = l4re_c-util libexec libfsclient libmem libipc libstdc++ libsystypes libe2access_blockserver 75 PRIVATE_INCDIR = $(IDL_BUILD_DIR) $(IDL_EXPORT_DIR) 76 77 include $(L4DIR)/mk/prog.mk 78 include $(IDL_MK_DIR)/interface_rules.mk 79 80 $(PLAIN_SRC_CC_dstest_exec): $(SERVER_INTERFACES_SRC_CC)