Add Makefile for elftoolchain readelf(1)

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2015-01-02 22:26:54 +00:00
parent bcc34ba8e9
commit 2432082836
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=276587

14
usr.bin/readelf/Makefile Normal file
View File

@ -0,0 +1,14 @@
# $FreeBSD$
ELFTCDIR= ${.CURDIR}/../../contrib/elftoolchain
READELFDIR= ${ELFTCDIR}/readelf
.PATH: ${READELFDIR}
PROG= readelf
LIBADD= dwarf elftc elf
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
.include <bsd.prog.mk>