diff options
author | Rob Austein <sra@hactrn.net> | 2016-06-14 21:01:11 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-06-14 21:01:11 -0400 |
commit | 1c3e4894ea9f1a6f9bc6602e6454a6efd9562efa (patch) | |
tree | b0372650c953a2c64a9f9a1ba0a78abd66bc1703 /GNUmakefile | |
parent | 34f32288afd87073eb5ab9bafc3f4202ab9a0551 (diff) |
Doh, don't build RPC client transport code when we're building the
server library, even if the old makefile (sometimes) did do that.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index b5f1f2b..14e94c6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -168,7 +168,7 @@ ifeq "${RPC_MODE}" "none" OBJ += ${CORE_OBJ} CFLAGS += -DHAL_RSA_USE_MODEXP=${RSA_USE_MODEXP_CORE} else ifeq "${RPC_MODE}" "server" - OBJ += ${CORE_OBJ} ${RPC_SERVER_OBJ} ${RPC_CLIENT_OBJ} ${RPC_DISPATCH_OBJ} + OBJ += ${CORE_OBJ} ${RPC_SERVER_OBJ} ${RPC_DISPATCH_OBJ} CFLAGS += -DRPC_CLIENT=RPC_CLIENT_LOCAL -DHAL_RSA_USE_MODEXP=${RSA_USE_MODEXP_CORE} else ifeq "${RPC_MODE}" "client-simple" OBJ += ${RPC_CLIENT_OBJ} |