#######################
#       :bk=0
#       Test suite for Peter/Pete IPC system
#       Creates GET and HAVE.
#
#       bjw             25-june-88      Initial coding.
#

OBJS = have.o get.o ipc.o
CFLAGS = +Q

#
# --- Give me a reference:
#
stone:  have get
        @touch stone

have:   have.o ipc.o
        ln -o HAVE  have.o ipc.o -lc

get:    get.o ipc.o
        ln -o GET   get.o  ipc.o -lc

#
# --- Now the source files:
#
ipc.o:  ipc.h ipcports.h
        cc $(CLFAGS) -o ipc.o IPC.C
        diff >ipc-c.diff IPC.C df1:IPC.C
        diff >ipc-h.diff IPC.H df1:IPC.H

$(OBJS):        ipc.h ipcports.h


