home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / rpc / Makefile < prev    next >
Encoding:
Makefile  |  1994-09-15  |  1.1 KB  |  45 lines

  1. #
  2. # Makefile for SUN rpc functions
  3. #
  4. #
  5.  
  6. TOPDIR=..
  7.  
  8. include $(TOPDIR)/Makeconfig
  9. include $(TOPDIR)/Makerules
  10.  
  11. # very special flags. gcc is broken on the builtin ffs ().
  12. VSCFLAGS=-fno-builtin
  13.  
  14. INC_CFLAGS=-I$(TOPDIR)/include
  15. BASE_CFLAGS:= $(BASE_CFLAGS) $(VSCFLAGS)
  16.  
  17.  
  18. DIRS:=
  19.  
  20. SRCS =     auth_des.c authdes_prot.c key_call.c key_prot.c netname.c \
  21.     svcauth_des.c openchild.c rtime.c publickey.c xcrypt.c \
  22.     auth_none.c auth_unix.c auth_prot.c \
  23.     clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c \
  24.     clnt_tcp.c clnt_udp.c rpc_dtblsz.c get_myaddr.c \
  25.     getrpcport.c pmap_clnt.c pmap_getmaps.c \
  26.     pmap_getport.c pmap_prot.c pmap_prot2.c pmap_rmt.c \
  27.     rpc_prot.c rpc_comdata.c rpc_callmsg.c svc.c svc_auth.c \
  28.     svc_au_ux.c svc_raw.c svc_run.c svc_simple.c \
  29.     svc_tcp.c svc_udp.c xdr.c xdr_array.c xdr_float.c xdr_mem.c \
  30.     xdr_rec.c xdr_ref.c xdr_stdio.c
  31.  
  32. HDRS =    key_prot.h auth_des.h \
  33.     auth.h auth_unix.h clnt.h netdb.h pmap_clnt.h pmap_prot.h \
  34.     pmap_rmt.h rpc.h rpc_msg.h svc.h svc_auth.h types.h xdr.h
  35.  
  36. ifneq ($(NYS),true)
  37. SRCS+=getrpcent.c
  38. endif
  39.  
  40. ASMS= $(SRCS:.c=.s)
  41. OBJS= $(SRCS:.c=.o)
  42. ALIASES= 
  43.  
  44. include $(TOPDIR)/Maketargets  
  45.