#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.
 
PRECISION = SINGLE

OFILES= copy.o defgroup.o hsvtorgb.o  preview.o \
	prsarg.o rectmesh.o replace.o stkgrp.o supermesh.o text.o transform.o 

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

all: libdore_util.a

libdore_util.a: $(OFILES)
	ar r libdore_util.a $(OFILES)

FRC:

.c.o:
	cc $(CFLAGS) -c $<

$(OFILES): dore_util.h

install:
	cpset dore_util.a $(ROOT)/usr/lib/libdore_util.a 644 root root
	cpset dore_util.h $(ROOT)/usr/include/dore_util.h 644 root root

clean:
	rm -f $(OFILES) libdore_util.a
