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

MAKE	= make
DIRS	= prepro cerial demo1 demo2 ezdemo

help:;		@echo "	First edit Makefile.inc, cerial/env_sel.h, and Makefile.generic."
		@echo "	Then make all"

all:;	@for i in $(DIRS); \
		do (echo "cd $$i; $(MAKE) all"; \
		cd $$i; $(MAKE) all); \
	done
	@-echo "         ********************************************"
	@-echo "         cerial built successfully.  Congratulations!"
	@-echo "         ********************************************"

 
clean:;	@for i in $(DIRS); \
		do (echo "cd $$i; $(MAKE) clean"; \
		cd $$i; rm -f *.o *.a *.out *~ *_ser.?xx *.asn); \
	done
	cd prepro; make clean

