diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-04 00:45:44 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-04 00:45:44 +0000 |
commit | de7d1814e1b6243d9e865319607aaae2982fc884 (patch) | |
tree | d3332b5d770f899c92b5ae303ee8ce7aa81e471a /libc | |
parent | 8c7ac6fc362d2d958c97262032c7dbde3471b100 (diff) |
One more addition.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inet/rpc/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/inet/rpc/Makefile b/libc/inet/rpc/Makefile index a08cf89ea..72dba26c5 100644 --- a/libc/inet/rpc/Makefile +++ b/libc/inet/rpc/Makefile @@ -46,7 +46,13 @@ CSRC:=create_xid.c pmap_clnt.c pmap_getmaps.c pmap_getport.c \ rpc_thread.c rcmd.c rexec.c sa_len.c ruserpass.c rtime.c \ getrpcent.c endif + COBJS=$(patsubst %.c,%.o, $(CSRC)) + +ifeq ($(UCLIBC_HAS_THREADS),y) +CFLAGS += $(PTINC) +endif + OBJS=$(COBJS) OBJ_LIST=../../obj.inet.rpc |