CC = gcc -traditional
CFLAGS = -g -Wall

LINKCC = cc

SRCS = othellotool.c textwindow.c
HDRS = textwindow.h
OBJS = othellotool.o textwindow.o
LIBS = -lsuntool -lsunwindow -lpixrect

othellotool:	$(OBJS)
	$(LINKCC) -o othellotool $(OBJS) $(LIBS)


othellotool.o:	textwindow.h


wc:
	wc $(SRCS) $(HDRS)

lint:
	lint $(SRCS)

clean:
	rm -f *.o *~ core
