nrelease - fix/improve livecd
[dragonfly.git] / bin / cpdup / Makefile
1 PROG=   cpdup
2 SRCS=   cpdup.c hcproto.c hclink.c misc.c
3
4 .if defined(BOOTSTRAPPING) || defined(RESCUE)
5 # For boostrapping buildworld the md5 functionality is not needed
6 CFLAGS+=        -DNOMD5
7 .else
8 .if !defined(NOMD5)
9 SRCS+=          md5.c
10 CFLAGS+=        ${PRIVATELIB_CFLAGS}
11 DPADD=          ${LIBCRYPTO}
12 LDADD=          -lprivate_crypto
13 LDFLAGS+=       ${PRIVATELIB_LDFLAGS}
14 .endif
15 .endif
16
17 .include <bsd.prog.mk>
18