######################################################################
# Copyright (c) 1993 Technical Research Centre of Finland
# All rights reserved.
#
# This software is provided ``as is'' and without any express or
# implied warranties, including, without limitation, the implied
# warranties of merchantibility and fitness for a particular purpose.
######################################################################

# Makefile

include ../Makefile.inc

all:		xdr_cli.out xdr_srv.out ber_cli.out ber_srv.out

xdr_cli.out:	xdr_cli.o
	$(LDXX) xdr_cli.o -o xdr_cli.out
xdr_srv.out:	xdr_srv.o
	$(LDXX) xdr_srv.o -o xdr_srv.out
x2_srv.out:	x2_srv.o
	$(LDXX) x2_srv.o -o x2_srv.out
ber_cli.out:	${CERIAL_LIBS} ber_cli.o
	$(LDXX) ber_cli.o -o ber_cli.out
ber_srv.out:	${CERIAL_LIBS} ber_srv.o
	$(LDXX) ber_srv.o -o ber_srv.out

