CC	= cc
CFLAGS	= -O2 -fomit-frame-pointer -fno-strength-reduce


all:	rdate

install: all
	install -o root -g root -m 0755 -s rdate ${DEBDIR}/usr/sbin
	install -o root -g root -m 0644 rdate.8 ${DEBDIR}/usr/man/man8

clean:
	rm -f *.o core rdate

rdate:	rdate.o err.o
