aboutsummaryrefslogtreecommitdiff
path: root/lib/libelf/Makefile
diff options
context:
space:
mode:
authorThomas Huth <thuth@linux.vnet.ibm.com>2011-07-08 15:43:00 +0200
committerThomas Huth <thuth@linux.vnet.ibm.com>2011-10-12 08:44:23 +0200
commit98cdbf03c14fe5a00d6047d8f0ceb13c83f29aef (patch)
treec1dae84c4e4e859433d242f1ab23628524c0bf1a /lib/libelf/Makefile
parentad3238534f79f218ed318c532f260d5ea1fd8074 (diff)
downloadSLOF-98cdbf03c14fe5a00d6047d8f0ceb13c83f29aef.zip
SLOF-98cdbf03c14fe5a00d6047d8f0ceb13c83f29aef.tar.gz
SLOF-98cdbf03c14fe5a00d6047d8f0ceb13c83f29aef.tar.bz2
Got rid of the ELF loader functions written in Forth, using libelf instead.
It's cumbersome to maintain code twice, in Forth and in C, and now that libelf has a new important feature (relocation), I removed most of the old Forth functions for ELF loading and use the libelf everywhere instead. Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Diffstat (limited to 'lib/libelf/Makefile')
-rw-r--r--lib/libelf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libelf/Makefile b/lib/libelf/Makefile
index 162368e..34a8f20 100644
--- a/lib/libelf/Makefile
+++ b/lib/libelf/Makefile
@@ -21,7 +21,7 @@ TARGET = ../libelf.a
all: $(TARGET)
-SRCS = elf.c elf32.c elf64.c
+SRCS = elf.c elf32.c elf64.c elf_claim.c
OBJS = $(SRCS:%.c=%.o)