# # Userspace program to read the "sgi.test" sunrpc channel # and respond with the MD5 sum of the word passed in the # upcall. Used to provide userspace behaviour to test # the sunrpc cache upcall mechanism. # # Copyright (c) 2008 Silicon Graphics, Inc. # All Rights Reserved. # By Greg Banks # default: reader OPENSSL_CFLAGS= OPENSSL_LIBS= -lcrypto CFLAGS= -Wall -g $(OPENSSL_CFLAGS) LDLIBS= $(OPENSSL_LIBS) reader: reader.c $(LINK.c) -o $@ reader.c $(LDLIBS)