Makefile.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. #
  8. ifeq ($(UCLIBC_HAS_FULL_RPC),y)
  9. CSRC:= auth_none.c auth_unix.c authunix_prot.c bindresvport.c \
  10. clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c clnt_tcp.c \
  11. clnt_udp.c rpc_dtablesize.c get_myaddress.c getrpcent.c getrpcport.c \
  12. pmap_clnt.c pmap_getmaps.c pmap_getport.c pmap_prot.c \
  13. pmap_prot2.c pmap_rmt.c rpc_prot.c rpc_commondata.c rpc_callmsg.c \
  14. svc.c svc_auth.c svc_auth_unix.c svc_raw.c svc_run.c svc_simple.c \
  15. svc_tcp.c svc_udp.c xdr.c xdr_array.c xdr_float.c xdr_mem.c \
  16. xdr_rec.c xdr_reference.c xdr_stdio.c \
  17. rtime.c clnt_unix.c svc_unix.c create_xid.c xdr_intXX_t.c rcmd.c \
  18. rexec.c sa_len.c ruserpass.c rpc_thread.c
  19. else
  20. # For now, only compile the stuff needed to do an NFS mount....
  21. CSRC:= create_xid.c pmap_clnt.c pmap_getmaps.c pmap_getport.c \
  22. pmap_prot.c pmap_prot2.c clnt_simple.c clnt_perror.c \
  23. clnt_tcp.c clnt_udp.c bindresvport.c authunix_prot.c \
  24. auth_none.c auth_unix.c xdr.c xdr_array.c xdr_rec.c \
  25. xdr_reference.c xdr_mem.c svc.c svc_auth.c svc_auth_unix.c \
  26. rpc_callmsg.c rpc_prot.c rpc_dtablesize.c rpc_commondata.c \
  27. rpc_thread.c rcmd.c rexec.c sa_len.c ruserpass.c rtime.c \
  28. getrpcent.c
  29. endif
  30. INET_RPC_DIR:=$(top_srcdir)libc/inet/rpc
  31. INET_RPC_OUT:=$(top_builddir)libc/inet/rpc
  32. INET_RPC_NO_MULTI:=rpc_commondata.c rpc_thread.c svc.c
  33. INET_RPC_SRC:=$(patsubst %.c,$(INET_RPC_DIR)/%.c,$(CSRC))
  34. INET_RPC_OBJ:=$(patsubst %.c,$(INET_RPC_OUT)/%.o,$(CSRC))
  35. libc-a-$(UCLIBC_HAS_RPC)+=$(INET_RPC_OBJ)
  36. libc-a-pic-$(UCLIBC_HAS_RPC)+=$(INET_RPC_OBJ:.o=.os)
  37. libc-so-$(UCLIBC_HAS_RPC)+=$(INET_RPC_OBJ:.o=.os)
  38. libc-multi-$(UCLIBC_HAS_RPC)+=$(filter-out $(patsubst %.c,$(INET_RPC_DIR)/%.c,$(INET_RPC_NO_MULTI)),$(INET_RPC_SRC))
  39. libc-nomulti-$(UCLIBC_HAS_RPC)+=$(patsubst %.c,$(INET_RPC_OUT)/%.o,$(INET_RPC_NO_MULTI))
  40. objclean-y+=inet_rpc_objclean
  41. inet_rpc_objclean:
  42. $(RM) $(INET_RPC_OUT)/*.{o,os}