# Public Domain

PROG =	cpdup
OBJS =	cpdup.o hcproto.o hclink.o misc.o fsmid.o md5.o

all: ${OBJS}
	${CC} ${LDFLAGS} -o ${PROG} ${OBJS}

install:
	install -c -S -s -m 555 cpdup ${PREFIX}/bin
	install -c -S -m 444 cpdup.1 ${PREFIX}/man/man1

test:
	@echo No tests

clean:
	rm -f ${PROG} ${OBJS}
