#GredCol library maker.
##############################################################################
CC = gcc
DEBUG = -ggdb -c

# This variable contains the flags passed to gcc.
CFLAGS = $(DEBUG) -DSYSV

# This variable points to the directory containing the other libraries.
TOP = /usr

# This variable lists the subdirectories to search for include files.
INCLUDES = -I$(TOP)/include -I.

# This variable lists the required libraries.
LIBS = -lPW -lm

# This variable lists the object files generated.
OBJS=	libgrcol.o

# This variable lists the C source files required.
SOURCES=libgrcol.c

all: libgrcol.a

# Fuggosegek #####

libgrcol.c : grcol.h

libgrcol.o : libgrcol.c

##################

libgrcol.a: $(OBJS)
	ar ruv libgrcol.a $(OBJS)












