#
# Makefile for NNTP server support programs
#

OBJS	=	acttimes.o

SRCS	=	acttimes.c

HFILES	=	../common/conf.h

CFLAGS= -O

# Where these support programs will live

DESTDIR	= /usr/lib/news

all:

acttimes: acttimes.o
	$(CC) ${CFLAGS} -o acttimes acttimes.o

install: acttimes
	cp acttimes ${DESTDIR}/acttimes
	chmod 755 ${DESTDIR}/acttimes

lint:
	lint acttimes.c

clean:
	-rm -f *.o acttimes

distrib: clean
	rm -rf SCCS old

check:
	sccs check
	sccs prt -y *.[ch] > /dev/null

tags:	${SRCS} ${HFILES}
	ctags ${SRCS} ${HFILES}

${OBJS}:	${HFILES}
