LDFLAGS = -N -s
CFLAGS = -O2 -fomit-frame-pointer -m486 -Wall

all: netdate

netdate: netdate.o

install: netdate
	install -o root -g root -m 0755 netdate ${DEBDIR}/usr/sbin/netdate
	install -o root -g root -m 0644 netdate.8 ${DEBDIR}/usr/man/man8
#	install -o root -g root -m 0644 COPYRIGHT ${DEBDIR}/usr/doc/copyright/netdate

clean:
	rm -f netdate *~ *.o core

