# Makefile for the game of life
# PJ Waskiewicz
# 3/17/2000

OBJS = life.o
OPTS = -lncurses

all: $(OBJS)
        gcc -g $(OPTS) $(OBJS) -o life

life.o: life.c
        gcc -g -c life.c

clean:
        rm -f *.o *~

clobber:
        make clean
        rm -f life