55c6dd3879
It's provided by sys.mk so there's no need to derive it from ${.CURDIR}. Suggested by: ngie Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5998
32 lines
744 B
Makefile
32 lines
744 B
Makefile
# $FreeBSD$
|
|
.include <bsd.own.mk>
|
|
|
|
PACKAGE=lib${LIB}
|
|
INTERNALLIB=
|
|
|
|
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
|
|
|
.PATH: ${ELFTCDIR}/libelftc
|
|
|
|
LIB= elftc
|
|
|
|
SRCS= elftc_bfdtarget.c \
|
|
elftc_copyfile.c \
|
|
elftc_demangle.c \
|
|
elftc_set_timestamps.c \
|
|
elftc_string_table.c \
|
|
elftc_version.c \
|
|
libelftc_bfdtarget.c \
|
|
libelftc_dem_arm.c \
|
|
libelftc_dem_gnu2.c \
|
|
libelftc_dem_gnu3.c \
|
|
libelftc_hash.c \
|
|
libelftc_vstr.c
|
|
|
|
INCS= libelftc.h
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
MAN=
|
|
|
|
.include <bsd.lib.mk>
|