# Copyright (c) 1993 Xerox Corporation. All rights reserved. # #-$Id$ # #-$Date$ # # # VERY IMPORTANT: # NO target-config-dependent things go in in Makefile directly. # ALL target-config-dependent things go in config.mk, below. # # # # include config.mk here to define: # # CC - C compiler # CONFIG_CPPFLAGS # CONFIG_CFLAGS # # ASPP - assembler preprocessor (CPP) # CONFIG_ASPPFLAGS # # AS - assembler # CONFIG_ASFLAGS # # LDR - loader for reloadable modules # CONFIG_LDRFLAGS # # LD - loader # CONFIG_LDFLAGS # # INCLUDE -- search path for header files # include ../config/config.mk # # locations of object files # INSTALL_LIB = ../lib INSTALL_BIN = ../bin # # compilation flags, etc. # CPPFLAGS = $(INCLUDE) $(CONFIG_CPPFLAGS) CFLAGS =-c $(CONFIG_CFLAGS) ASPPFLAGS = $(INCLUDE) $(CONFIG_ASPPFLAGS) \ -DASM ASFLAGS = $(CONFIG_ASFLAGS) LDRFLAGS = $(CONFIG_LDRFLAGS) LDFLAGS = $(CONFIG_LDFLAGS) # # standard commands and default rules # INSTALL = cp -p .s.o: $(ASPP) $(ASPPFLAGS) $< > tmp.s ; $(AS) $(ASFLAGS) tmp.s -o $@ ; \ rm -f tmp.s .c.o: $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ # # # # # BEGIN PACKAGE-SPECIFIC PART # # # # # # Default target # default: rpc.o # # SOURCE FILE DEFINITION # # define CSRC SSRC MISCSRC HDEFS MISCDEFS. # # define MAKEDEP_MISCSRC = commands to make MISCSRC dependencies # (dependencies for .c and .s files are done automatically). # CSRC = auth_none.c pmap_clnt.c svc_udp.c \ auth_unix.c pmap_getport.c thread_safe_utils.c \ authunix_prot.c pmap_prot.c xdr.c \ clnt_generic.c pmap_prot2.c xdr_array.c \ clnt_perror.c pmap_rmt.c xdr_float.c \ clnt_udp_pcr.c rpc_callmsg.c xdr_mem.c \ dbx_rpc.c rpc_commondata.c xdr_rec.c \ rpc_prot.c xdr_reference.c \ get_myaddress.c svc_auth.c xdr_stdio.c \ key_prot.c svc_auth_unix.c \ netname.c svc_pcr.c SSRC = MISCSRC = SRC = $(CSRC) $(SSRC) $(MISCSRC) MAKEDEP_MISCSRC = HDEFS = PCR_rpc_names.h pmap_prot.h svc_auth.h \ auth.h pmap_rmt.h svcudp_data.h \ auth_unix.h raw.h thread_safe_utils.h \ clnt.h rpc.h types.h \ key_prot.h rpc_msg.h xdr.h \ pmap_clnt.h svc.h MISCDEFS = DEFS = $(HDEFS) $(MISCDEFS) # # # INSTALL DEFINITION # # define INSTALL_LIBFILES = targets to be copied into INSTALL_LIB # define INSTALL_BINFILES = targets to be copied into INSTALL_BIN # INSTALL_BINFILES = INSTALL_LIBFILES = rpc.o # # package-specific definitions and rules # COBJ = auth_none.o pmap_clnt.o svc_udp.o \ auth_unix.o pmap_getport.o thread_safe_utils.o \ authunix_prot.o pmap_prot.o xdr.o \ clnt_generic.o pmap_prot2.o xdr_array.o \ clnt_perror.o pmap_rmt.o xdr_float.o \ clnt_udp_pcr.o rpc_callmsg.o xdr_mem.o \ dbx_rpc.o rpc_commondata.o xdr_rec.o \ rpc_prot.o xdr_reference.o \ get_myaddress.o svc_auth.o xdr_stdio.o \ key_prot.o svc_auth_unix.o \ netname.o svc_pcr.o SOBJ = OBJ = MISCOBJ = rpc.o: $(COBJ) $(SOBJ) $(MISCOBJ) $(LDR) $(LDRFLAGS) -o rpc.o $(COBJ) $(SOBJ) # # # # # END PACKAGE-SPECIFIC PART # # # # # # # STANDARD TARGETS # # # # make clean # clean: rm -f *.o *~ core a.out *.a *.BAK *.bak *.CKP logmsg.txt pcr # # make depend # # NOTE: the makefile must include "# DO NOT DELETE THIS LINE" # and at least one additional line of text after the last target. # "make depend" will replace everything following that line # by a newly-constructed list of dependencies. # # You can modify the behavior of this target by defining $(MAKEDEP_MISCSRC). # makedep: $(CSRC) $(SSRC) $(MISCSRC) rm -f makedep $(MAKEDEP_MISCSRC) -for x in $(CSRC) END ; \ do if [ $$x != END ]; then \ $(CPP) -M $(CPPFLAGS) $$x \ | sed -e '/:$$/d' >> makedep ; \ fi ; \ done -for x in $(SSRC) END ; \ do if [ $$x != END ]; then \ $(ASPP) -M $(ASPPFLAGS) $$x \ | sed -e '/:$$/d' \ | sed -e 's/[.]s[.]o :/.o :/g' >> makedep ; \ fi ; \ done depend: makedep echo '/^# DO NOT DELETE THIS LINE/,$$c' > eddep echo '# DO NOT DELETE THIS LINE' >> eddep echo '# Make depend depends on it' >> eddep echo '.' >> eddep echo '$$r makedep' >> eddep echo 'w' >> eddep rm -f Makefile.bak mv Makefile Makefile.bak cp Makefile.bak Makefile chmod u+w Makefile ex - Makefile < eddep -if [ ! -w Makefile.bak ] ; then chmod u-w Makefile ; fi rm -f eddep makedep # # # END OF HUMAN-EDITABLE PART # # # #-$Log$ # # # DO NOT DELETE THIS LINE # Make depend depends on it auth_none.o : auth_none.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ ../rpc/auth.h pmap_clnt.o : pmap_clnt.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../rpc/pmap_prot.h ../rpc/pmap_clnt.h \ /usr/include/sys/syslog.h svc_udp.o : svc_udp.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../th/PCR_Th.h ../config/PCR_Arch.h \ ../config/PCR_StdDefs.h ../sig/PCR_Sig.h ../config/PCR_OS.h \ ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h ../io/PCR_IOSocket.h \ ../host/sys/socket.h ../posix/host/sys/sockio.h \ /import/gnu/lib/gcc-include/sys/ioccom.h ../posix/host/netinet/in.h \ ../posix/host/netinet/tcp.h ../posix/sys/socket.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h /usr/include/sys/syslog.h \ ../rpc/svcudp_data.h auth_unix.o : auth_unix.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/sys/syslog.h ../rpc/types.h ../rpc/xdr.h ../rpc/auth.h \ ../rpc/auth_unix.h pmap_getport.o : pmap_getport.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../rpc/pmap_prot.h ../rpc/pmap_clnt.h \ ../posix/sys/socket.h ../io/PCR_IOSocket.h ../config/PCR_OS.h \ ../th/PCR_ThTypes.h ../config/PCR_Arch.h ../sig/PCR_SigTypes.h \ ../host/sys/socket.h ../posix/host/sys/sockio.h \ /import/gnu/lib/gcc-include/sys/ioccom.h ../posix/host/netinet/in.h \ ../posix/host/netinet/tcp.h /usr/include/net/if.h thread_safe_utils.o : thread_safe_utils.c ../th/PCR_Th.h \ ../config/PCR_Arch.h ../config/PCR_StdDefs.h ../config/PCR_StdTypes.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h authunix_prot.o : authunix_prot.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ ../rpc/auth.h ../rpc/auth_unix.h pmap_prot.o : pmap_prot.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ ../rpc/pmap_prot.h xdr.o : xdr.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/syslog.h ../rpc/types.h /usr/include/sys/time.h \ ../posix/time.h ../host/time.h ../rpc/xdr.h clnt_generic.o : clnt_generic.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../th/PCR_Th.h ../config/PCR_Arch.h \ ../config/PCR_StdDefs.h ../sig/PCR_Sig.h ../config/PCR_OS.h \ ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h ../io/PCR_IOSocket.h \ ../host/sys/socket.h ../posix/host/sys/sockio.h \ /import/gnu/lib/gcc-include/sys/ioccom.h ../posix/host/netinet/in.h \ ../posix/host/netinet/tcp.h ../posix/sys/socket.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h /usr/include/netdb.h \ ../rpc/thread_safe_utils.h pmap_prot2.o : pmap_prot2.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ ../rpc/pmap_prot.h xdr_array.o : xdr_array.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/syslog.h ../rpc/types.h /usr/include/sys/time.h \ ../posix/time.h ../host/time.h ../rpc/xdr.h clnt_perror.o : clnt_perror.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/auth.h \ ../rpc/clnt.h pmap_rmt.o : pmap_rmt.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ ../io/PCR_IOSocket.h ../config/PCR_OS.h ../th/PCR_ThTypes.h \ ../config/PCR_Arch.h ../sig/PCR_SigTypes.h ../host/sys/socket.h \ ../posix/host/sys/sockio.h /import/gnu/lib/gcc-include/sys/ioccom.h \ ../posix/host/netinet/in.h ../posix/host/netinet/tcp.h ../th/PCR_Th.h \ ../config/PCR_StdDefs.h ../sig/PCR_Sig.h ../rpc/rpc.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../rpc/pmap_prot.h ../rpc/pmap_clnt.h \ ../rpc/pmap_rmt.h ../posix/sys/socket.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h /usr/include/net/if.h /usr/include/sys/ioctl.h \ /import/gnu/lib/gcc-include/sys/ttychars.h /usr/include/sys/ttydev.h \ /import/gnu/lib/gcc-include/sys/ttold.h \ /import/gnu/lib/gcc-include/sys/ttycom.h \ /import/gnu/lib/gcc-include/sys/filio.h ../posix/sys/sockio.h \ /usr/include/arpa/inet.h /usr/include/sys/syslog.h \ ../rpc/thread_safe_utils.h xdr_float.o : xdr_float.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h clnt_udp_pcr.o : clnt_udp_pcr.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../io/PCR_IOSocket.h ../config/PCR_OS.h \ ../th/PCR_ThTypes.h ../config/PCR_Arch.h ../sig/PCR_SigTypes.h \ ../host/sys/socket.h ../posix/host/sys/sockio.h \ /import/gnu/lib/gcc-include/sys/ioccom.h ../posix/host/netinet/in.h \ ../posix/host/netinet/tcp.h ../th/PCR_Th.h ../config/PCR_StdDefs.h \ ../sig/PCR_Sig.h ../posix/sys/socket.h /usr/include/netdb.h \ ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../rpc/pmap_clnt.h /usr/include/sys/syslog.h rpc_callmsg.o : rpc_callmsg.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/param.h /usr/include/machine/param.h \ /usr/include/sys/signal.h /usr/include/vm/faultcode.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h xdr_mem.o : xdr_mem.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ /usr/include/netinet/in.h dbx_rpc.o : dbx_rpc.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/param.h /usr/include/machine/param.h \ /usr/include/sys/signal.h /usr/include/vm/faultcode.h ../posix/sys/socket.h \ ../io/PCR_IOSocket.h ../config/PCR_OS.h ../th/PCR_ThTypes.h \ ../config/PCR_Arch.h ../sig/PCR_SigTypes.h ../host/sys/socket.h \ ../posix/host/sys/sockio.h /import/gnu/lib/gcc-include/sys/ioccom.h \ ../posix/host/netinet/in.h ../posix/host/netinet/tcp.h \ /usr/include/sys/socketvar.h /usr/include/netinet/in.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ ../rpc/auth.h ../rpc/clnt.h ../rpc/rpc_msg.h ../rpc/svc.h ../rpc/svc_auth.h \ ../rpc/auth_unix.h ../rpc/pmap_prot.h ../rpc/pmap_clnt.h rpc_commondata.o : rpc_commondata.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ ../th/PCR_ThSpecific.h ../config/PCR_StdDefs.h ../config/PCR_Arch.h \ ../rpc/rpc.h ../rpc/types.h /usr/include/sys/time.h ../posix/time.h \ ../host/time.h /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h \ ../rpc/clnt.h ../rpc/rpc_msg.h ../rpc/auth_unix.h \ /usr/include/rpc/auth_des.h ../rpc/svc.h ../rpc/svc_auth.h xdr_rec.o : xdr_rec.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ /usr/include/netinet/in.h /usr/include/sys/syslog.h rpc_prot.o : rpc_prot.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/param.h /usr/include/machine/param.h \ /usr/include/sys/signal.h /usr/include/vm/faultcode.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h xdr_reference.o : xdr_reference.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/syslog.h ../rpc/types.h /usr/include/sys/time.h \ ../posix/time.h ../host/time.h ../rpc/xdr.h get_myaddress.o : get_myaddress.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/pmap_prot.h \ ../th/PCR_Th.h ../config/PCR_Arch.h ../config/PCR_StdDefs.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../io/PCR_IOSocket.h ../host/sys/socket.h \ ../posix/host/sys/sockio.h /import/gnu/lib/gcc-include/sys/ioccom.h \ ../posix/host/netinet/in.h ../posix/host/netinet/tcp.h \ ../posix/sys/socket.h /usr/include/net/if.h /usr/include/sys/ioctl.h \ /import/gnu/lib/gcc-include/sys/ttychars.h /usr/include/sys/ttydev.h \ /import/gnu/lib/gcc-include/sys/ttold.h \ /import/gnu/lib/gcc-include/sys/ttycom.h \ /import/gnu/lib/gcc-include/sys/filio.h ../posix/sys/sockio.h \ /usr/include/arpa/inet.h /usr/include/netinet/in.h \ /usr/include/sys/syslog.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../rpc/thread_safe_utils.h svc_auth.o : svc_auth.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h xdr_stdio.o : xdr_stdio.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/types.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/xdr.h \ /usr/include/netinet/in.h key_prot.o : key_prot.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../rpc/key_prot.h svc_auth_unix.o : svc_auth_unix.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h \ ../rpc/clnt.h ../rpc/rpc_msg.h ../rpc/auth_unix.h \ /usr/include/rpc/auth_des.h ../rpc/svc.h ../rpc/svc_auth.h \ /usr/include/sys/syslog.h netname.o : netname.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/param.h /usr/include/machine/param.h \ /usr/include/sys/signal.h /usr/include/vm/faultcode.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/sys/time.h ../posix/time.h ../host/time.h \ /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h ../rpc/clnt.h \ ../rpc/rpc_msg.h ../rpc/auth_unix.h /usr/include/rpc/auth_des.h \ ../rpc/svc.h ../rpc/svc_auth.h ../rpc/thread_safe_utils.h ../th/PCR_Th.h \ ../config/PCR_Arch.h ../config/PCR_StdDefs.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h svc_pcr.o : svc_pcr.c ../rpc/PCR_rpc_names.h ../ansi/stdio.h \ ../config/PCR_StdTypes.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../ansi/stdlib.h \ ../posix/host/stdlib.h /usr/include/sys/stdtypes.h ../ansi/ctype.h \ ../host/ctype.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/sysmacros.h ../posix/unistd.h \ ../posix/utime.h ../host/utime.h ../posix/host/unistd.h \ /usr/include/sys/time.h ../posix/time.h ../host/time.h ../rpc/rpc.h \ ../rpc/types.h /usr/include/netinet/in.h ../rpc/xdr.h ../rpc/auth.h \ ../rpc/clnt.h ../rpc/rpc_msg.h ../rpc/auth_unix.h \ /usr/include/rpc/auth_des.h ../rpc/svc.h ../rpc/svc_auth.h ../io/PCR_IO.h \ ../th/PCR_ThTypes.h ../config/PCR_Arch.h ../sig/PCR_SigTypes.h \ ../config/PCR_OS.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h ../th/PCR_Th.h \ ../config/PCR_StdDefs.h ../sig/PCR_Sig.h ../rpc/svcudp_data.h