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

############### demo2/Makefile

include ../Makefile.inc

all:		demo2.out

############### demo2

demo2.out:	demo2.o ${CERIAL_LIBS}
		$(LDXX) demo2.o -o demo2.out
demo2_ser.cxx:	demo2.hxx
		$(CERIAL_COMPILER) demo2.hxx
demo2.o:	demo2.cxx demo2_ser.cxx demo2.hxx \
		$(CERIAL_HS)
		$(CCXX)  demo2.cxx

