#
# This is a very rudimentary Makefile to compile the library libice.a
# from the ANSI-C source. Installation of the header files, library,
# and man pages is up to you.
#
# Written by Matthew Kwan, November 1996
#

CC =		gcc
CPPFLAGS =	-O

libice.a:	ice.o
		ar ruvs $@ ice.o

ice.o:		ice.c ice.h
