Add beginning of an ELF parser.

2006-08-15  Soren Sandmann  <sandmann@redhat.com>

	Add beginning of an ELF parser.

	* binparser.[ch]: New files
	* elfparser.[ch]: New files
	* testelf.c: New file
	* Makefile.am (testelf_SOURCES): Add new testelf program.
This commit is contained in:
Soren Sandmann
2006-08-16 03:31:10 +00:00
committed by Søren Sandmann Pedersen
parent bde3d8a537
commit 2bc2e3658d
6 changed files with 1037 additions and 0 deletions

View File

@ -3,6 +3,12 @@ DIST_SUBDIRS = module
bin_PROGRAMS = sysprof-text
noinst_PROGRAMS = testelf
testelf_SOURCES = testelf.c elfparser.c elfparser.h binparser.c binparser.h
testelf_CPPFLAGS = \
$(CORE_DEP_CFLAGS)
testelf_LDADD = $(CORE_DEP_LIBS)
if BUILD_GUI
bin_PROGRAMS += sysprof
endif