### makefile
#
#   This is a makefile to be used with the VAX C compiler. Note,
#   you also need Multinet for this.
#
#   W.G.J. Langeveld
#
###
all:           wprint.exe

wprint.exe:    wprint.obj readn.obj
	       link wprint/opt

wprint.obj:    wprint.c
               cc wprint.c

readn.obj:     readn.c
               cc readn.c

