diff options
author | Paul Selkirk <paul@psgd.org> | 2016-03-21 22:35:48 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-03-21 22:37:53 -0400 |
commit | cdaf07d30bd440cf3ee2f6615d044634734047bd (patch) | |
tree | 6086334b65da625dc782074064543c891dec1bfa /GNUmakefile | |
parent | 46793833737e925af47e57d99bd037226d1cb2c4 (diff) |
stupid fixes
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 66f04cb..75bcf44 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -78,7 +78,7 @@ endif # loopback: communicate over loopback socket on Novena # serial: communicate over USB in serial pass-through mode -RPC_CORE_OBJ = rpc_api.o rpc_hash.o rpc_misc.o rpc_pkey.o +RPC_CORE_OBJ = rpc_hash.o rpc_misc.o rpc_pkey.o ifdef RPC_SERVER RPC_SERVER_OBJ = rpc_server.o ${RPC_CORE_OBJ} @@ -86,7 +86,7 @@ ifdef RPC_SERVER endif ifdef RPC_CLIENT - RPC_CLIENT_OBJ = rpc_client.o + RPC_CLIENT_OBJ = rpc_client.o rpc_api.o ifeq (${RPC_CLIENT},local) RPC_CLIENT_OBJ += ${RPC_CORE_OBJ} else |