#:ts=8
#
# $Id: Makefile,v 0.30 1995/08/22 20:52:29 steppler Exp $
#
# Makefile CNCL lib/gist
#
TOPDIR	= ../..

include $(TOPDIR)/make.conf

DEBUG       = -g -Wall -Wno-unused

FILES = ColorfulObject.c ColorfulObject.h DiagObject.c DiagObject.h \
	Makefile MovingObject.c MovingObject.h PolyLine.c PolyLine.h \
	TextObject.c TextObject.h ValueObject.c ValueObject.h World.c World.h \
	gist.c gist.h gist1.h gist_fn.c gist_fn.hh gist_impl.c gist_impl.hh \
	gist_ivimpl.c gist_ivimpl.hh

OBJS	= DiagObject.o ValueObject.o TextObject.o ColorfulObject.o\
	  MovingObject.o PolyLine.o World.o gist.o gist_ivimpl.o\
	  gist_impl.o gist_fn.o


all: 	$(OBJS)

lib:
	(cd ..; make lib)

install:
	cp *.h $(includedir)/CNCL

# Common stuff
include $(TOPDIR)/make.common
