# -----------------------------------------------------------------------------
#	Graphics library Makefile
# -----------------------------------------------------------------------------
#
#	Copyright (C) 1995 by Steffen Seeger, [seeger@physik.tu-chemnitz.de]
#
# -----------------------------------------------------------------------------

#DEBUGFLAGS = -DDEBUG
INCLUDEDIR = ../include

LIBOBJS	= box.o circle.o drawinfo.o event.o fillscreen.o graphlib.o gtext.o \
	  hline.o init.o keyboard.o line.o mode.o monitor.o \
	  palette.o pixel.o state.o vline.o vt.o


include ../.make_rules

lib:	grlib.a

grlib.a:	$(LIBOBJS)
	$(AR) rcs grlib.a $(LIBOBJS)

all:	lib

include ../.non_recursive
include .depend
