diff options
author | Paul Selkirk <paul@psgd.org> | 2016-02-25 17:27:33 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-02-25 17:27:33 -0500 |
commit | cef7ba6f7024a2c3a53760be8c5fc4f937e8efb5 (patch) | |
tree | 76ffb7c2ab731674f78871c8e2c5a096f9cc4f37 /GNUmakefile | |
parent | a88a8695d30faeac3186ec88278fd075d85315d9 (diff) |
RPC over loopback socket, just to work out the mechanics for serialization and dispatch.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/GNUmakefile b/GNUmakefile index a600dd3..0637f76 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -46,18 +46,13 @@ IO_OBJ_I2C = hal_io_i2c.o # Default I/O bus is EIM, override this to use I2C instead IO_OBJ = ${IO_OBJ_EIM} -RPC_OBJ_COMMON = rpc_api.o rpc_hash.o -RPC_OBJ_CLIENT = ${RPC_OBJ_COMMON} rpc_client.o -RPC_OBJ_SERVER = ${RPC_OBJ_COMMON} rpc_misc.o rpc_pkey.o - -# Default should be to build the RPC server code, but we haven't -# written even the skeleton of that yet. We'll probably end up -# needing a makefile conditional to handle all this properly -RPC_OBJ = ${RPC_OBJ_SERVER} - -# XXX temporary -$(warning TEMPORARY KLUDGE TO TEST rpc_client) -RPC_OBJ += ${RPC_OBJ_CLIENT} +RPC_OBJ_COMMON = rpc_api.o rpc_hash.o rpc_misc.o rpc_pkey.o rpc_xdr.o +RPC_OBJ_CLIENT = rpc_client.o rpc_client_loopback.o +RPC_OBJ_SERVER = rpc_server.o rpc_server_loopback.o + +# Default should be to build the RPC server code. We'll probably end up +# needing a makefile conditional to handle all this properly. +RPC_OBJ = ${RPC_OBJ_COMMON} ${RPC_OBJ_CLIENT} ${RPC_OBJ_SERVER} KS_OBJ_COMMON = ks.o KS_OBJ_MMAP = ${KS_OBJ_COMMON} ks_mmap.o |