a6ae90983e
Some notable improvements include: readelf: - Add AArch64 relocation definitions. - Report value of unknown relocation types. elfcopy: - Consider symbols with STB_GNU_UNIQUE binding as global symbols. - Fixed support for VMA adjustment for loadable sections found in relocatable objects. - Handle nameless global symbols. - Improve wildcard matching for !-prefixed symbols. - Add PE/COFF support. elfdump: - Improve section type reporting. - Add MIPS-specific section types. This update also includes a significant number of bug fixes. PR: 207091 [exp-run] Sponsored by: The FreeBSD Foundation
33 lines
451 B
Makefile
33 lines
451 B
Makefile
# $Id: Makefile 3349 2016-01-18 21:09:16Z jkoshy $
|
|
|
|
TOP= ${.CURDIR}/..
|
|
|
|
LIB= pe
|
|
|
|
SRCS= libpe_buffer.c \
|
|
libpe_coff.c \
|
|
libpe_dos.c \
|
|
libpe_init.c \
|
|
libpe_rich.c \
|
|
libpe_section.c \
|
|
libpe_utils.c \
|
|
pe_buffer.c \
|
|
pe_cntl.c \
|
|
pe_coff.c \
|
|
pe_dos.c \
|
|
pe_flag.c \
|
|
pe_init.c \
|
|
pe_rich.c \
|
|
pe_section.c \
|
|
pe_symtab.c \
|
|
pe_update.c
|
|
|
|
INCS= libpe.h pe.h
|
|
INCSDIR= /usr/include
|
|
|
|
SHLIB_MAJOR= 1
|
|
|
|
WARNS?= 6
|
|
|
|
.include "${TOP}/mk/elftoolchain.lib.mk"
|