bd49e931f2
Reviewed by: jkoshy Approved by: jkoshy (mentor) Tested by: erwin (ports build test on pointyhat) Sponsored by: Google Summer of Code 2007 Reviewed by (earlier version): Jaakko Heinonen <jh[AT]saunalahti.fi> Tested by (earlier version): Steve Kargl <sgk[AT]troutmask.apl.washington.edu> Tested by (earlier version): Martin Voros <martin_voros[AT]yahoo.com> Tested by (earlier version): swell.k[AT]gmail.com Tested by (earlier version): joel Tested by (earlier version): Alexey Shuvaev <shuvaev[AT]physik.uni-wuerzburg.de> Tested by (earlier version): Arjan van Leeuwen <avleeuwen[AT]gmail.com> Thanks to gabor@ for building ports for it. Thanks to erwin@ and kris@ for scheduling the ports build test on pointyhat. And thanks to many others for their feedback.
13 lines
235 B
Makefile
13 lines
235 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ar
|
|
VERSION= 1.0.2
|
|
SRCS= ar.c read.c util.c write.c
|
|
WARNS?= 5
|
|
DPADD= ${LIBARCHIVE} ${LIBELF}
|
|
LDADD= -larchive -lelf
|
|
CFLAGS+= -DBSDAR_VERSION=\"${VERSION}\"
|
|
LINKS= ${BINDIR}/ar ${BINDIR}/ranlib
|
|
|
|
.include <bsd.prog.mk>
|