Tim Kientzle 4cbbc3a35e Add DPADD to Makefile (thanks to Andrey for pointing this out).
Generally clean up Makefile, remove dmalloc references from source
(there are better ways to do this than pollute the FreeBSD src tree).
2004-04-12 00:13:23 +00:00

12 lines
178 B
Makefile

# $FreeBSD$
PROG= bsdtar
SRCS= bsdtar.c matching.c read.c util.c write.c
WARNS?= 6
LDADD+= -larchive -lbz2 -lz
DPADD+= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}
.include <bsd.prog.mk>