#
# Makefile for count.  This is a little overkill, but what the heck.
# (This is public domain too!)
# Written by:  Jeff Beadles
# jeff@quark.WV.TEK.COM		...tektronix!quark.wv!jeff
#

CC = cc
CFLAGS = -Oas -Dvoid=int

#For the executable file
BINDIR=/usr/local

count: count.c Makefile
	$(CC) $(CFLAGS) count.c -o count

install: count
	-strip count
	cp count ${BINDIR}/count
	chmod 755 ${BINDIR}/count

clean:
	rm -f *.o core a.out

clobber: clean
	rm -f count

