#ident "%W%" %G%
 
# Copyright (C) 1994 Kubota Graphics Corp.
# 
# Permission to use, copy, modify, and distribute this material for
# any purpose and without fee is hereby granted, provided that the
# above copyright notice and this permission notice appear in all
# copies, and that the name of Kubota Graphics not be used in
# advertising or publicity pertaining to this material.  Kubota
# Graphics Corporation MAKES NO REPRESENTATIONS ABOUT THE ACCURACY
# OR SUITABILITY OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED
# "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE AND KUBOTA GRAPHICS CORPORATION DISCLAIMS ALL WARRANTIES,
# EXPRESS OR IMPLIED.
 
DORELIB= -ldore
PRECISION= SINGLE

INCDIR=/usr/include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)

genericdir= ../../generic
utildir=../../util

all: render gendata

render:  mkobjects.o mtn.o mtn.h
	cc mkobjects.o ${genericdir}/run.o mtn.o \
		${utildir}/libdore_util.a \
		$(DORELIB)  -lXext -lX11 -lm -o render

gendata: gendata.o mtn.o mtn.h
	cc -o  gendata  gendata.o mtn.o -lm

mtn.o:	mtn.h

.c.o:
	cc -c $(CFLAGS) $< -I${utildir}

clean:
	rm -f mkobjects.o render gendata gendata.o mtn.o
