Add Makefile for elftoolchain readelf(1)

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
emaste 2015-01-02 22:26:54 +00:00
parent c0b4cf7c23
commit 4817ced20e

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>