4cbbc3a35e
Generally clean up Makefile, remove dmalloc references from source (there are better ways to do this than pollute the FreeBSD src tree).
12 lines
178 B
Makefile
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>
|
|
|