blob: baf11de0337da87ba88b26e126eef64fc910e2cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
lib_LIBRARIES = libformat.a
libformat_a_SOURCES = \
exe_format.h exe_format.c \
exe_format-int.h \
dbg_format.h dbg_format.c \
dbg_format-int.h
libformat_a_CFLAGS = $(AM_CFLAGS)
INCLUDES = $(LIBGTK_CFLAGS)
AM_CPPFLAGS =
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = dwarf elf java mangling pe
|