#
# Makefile for clock routine
#	Last changed 4/30/88 01:35:39
#

# note: this should be able to be compiled with -DMINICURSES to save
# size and speed, but an apparent bug causes noecho() to get broken

BINDIR = /usr/local/bin

clock:	clock.c
#	$(CC) $(CFLAGS) -DMINICURSES -o clock clock.c -lcurses
	$(CC) $(CFLAGS) -o clock clock.c -lcurses

install:	clock
	strip clock
	-rm $(BINDIR)/clock
	ln clock $(BINDIR)
	touch install

lint:	clock.c
	lint -pu clock.c >LINT
