######################################################################
# 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.
######################################################################

############### cerial/Makefile

include ../Makefile.inc

all:		asn1ber.o $(CERIAL_LIBS) hex

############### cerial library
cerial.o:	cerial.cc cerial.h
readable.o:	readable.cxx readable.hxx cerial.h
xdrcerial.o:	xdrcerial.cc xdrcerial.h cerial.h
asncerial.o:	asncerial.cc asncerial.h cerial.h
asntl.o:	asntl.cc asntl.h 
asn1ber.o:      asn1ber.c
		$(ANSICC) -c $(CFLAGS) $(IFLAGS) asn1ber.c
hex:		hex.o
		$(LDXX) -o hex hex.o


