blob: d91e2b048f4374ccfa5bd8c452d2028e065180df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
noinst_LTLIBRARIES = libformatelf.la
libformatelf_la_SOURCES = \
elf-int.h elf-int.c \
elf.h elf.c \
elf_def.h \
helper_x86.h helper_x86.c \
program.h program.c \
section.h section.c \
strings.h strings.c \
symbols.h symbols.c
# helper_mips.h helper_mips.c
libformatelf_la_LDFLAGS =
INCLUDES = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CPPFLAGS =
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
|