# 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