#
# -----------------------------------------------------------------------------
#
# A license is hereby granted to reproduce this software source code and
# to create executable versions from this source code for personal,
# non-commercial use.  The copyright notice included with the software
# must be maintained in all copies produced.
#
# THIS PROGRAM IS PROVIDED "AS IS". THE AUTHOR PROVIDES NO WARRANTIES
# WHATSOEVER, EXPRESSED OR IMPLIED, INCLUDING WARRANTIES OF
# MERCHANTABILITY, TITLE, OR FITNESS FOR ANY PARTICULAR PURPOSE.  THE
# AUTHOR DOES NOT WARRANT THAT USE OF THIS PROGRAM DOES NOT INFRINGE THE
# INTELLECTUAL PROPERTY RIGHTS OF ANY THIRD PARTY IN ANY COUNTRY.
#
# Copyright (c) 1995, John Conover, All Rights Reserved.
#
# Comments and/or bug reports should be addressed to:
#
#     john@johncon.com (John Conover)
#
# -----------------------------------------------------------------------------
#
# Makefile for various files for studying a time sampled Brownian fractal
#
# $Revision: 0.0 $
# $Date: 1995/11/19 19:38:03 $
# $Id: Makefile,v 0.0 1995/11/19 19:38:03 john Exp $
# $Log: Makefile,v $
# Revision 0.0	1995/11/19 19:38:03  john
# Initial version
#
#
DATA=tslogreturns \
     tslsq \
     tsnormal \
     tsrms

GRAPHICS=brownian.eps

all: ${GRAPHICS}

.PHONEY: ${GRAPHICS}

${GRAPHICS}: ${DATA}
	gnuplot gnuplot

tslogreturns tslsq tsnormal tsrms: brownian
	brownian

clean:
	rm -f ${DATA}

realclean:
	rm -f ${DATA} ${GRAPHICS}
