mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 09:43:06 +00:00
e7367a4a94
We don't actually want make clean to remove the generated files that are included in a distribution tarball, because then the user will need to regenerate them, and they might not have the dependencies installed. Signed-off-by: Omar Sandoval <osandov@osandov.com>
167 lines
3.9 KiB
Makefile
167 lines
3.9 KiB
Makefile
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
AM_CPPFLAGS = -I $(top_srcdir)/include -D_GNU_SOURCE
|
|
|
|
noinst_HEADERS = include/dwarf.h \
|
|
include/elf.h \
|
|
include/elfutils/known-dwarf.h
|
|
|
|
include_HEADERS = drgn.h
|
|
|
|
ARCH_DEFS = arch_ppc64.defs \
|
|
arch_x86_64.defs
|
|
|
|
ARCH_INCS = $(ARCH_DEFS:.defs=.inc)
|
|
|
|
BUILT_SOURCES = drgn.h $(ARCH_INCS)
|
|
|
|
noinst_LTLIBRARIES = libdrgnimpl.la
|
|
|
|
libdrgnimpl_la_SOURCES = $(ARCH_DEFS:.defs=.c) \
|
|
$(ARCH_INCS) \
|
|
arch_register_layout.h \
|
|
binary_buffer.c \
|
|
binary_buffer.h \
|
|
binary_search_tree.h \
|
|
bitops.h \
|
|
cfi.c \
|
|
cfi.h \
|
|
cityhash.h \
|
|
debug_info.c \
|
|
debug_info.h \
|
|
dwarf_index.c \
|
|
dwarf_index.h \
|
|
error.c \
|
|
error.h \
|
|
hash_table.c \
|
|
hash_table.h \
|
|
helpers.h \
|
|
language.c \
|
|
language.h \
|
|
language_c.c \
|
|
lazy_object.c \
|
|
lazy_object.h \
|
|
lexer.c \
|
|
lexer.h \
|
|
linux_kernel.c \
|
|
linux_kernel.h \
|
|
linux_kernel_helpers.c \
|
|
memory_reader.c \
|
|
memory_reader.h \
|
|
minmax.h \
|
|
object.c \
|
|
object.h \
|
|
object_index.c \
|
|
object_index.h \
|
|
orc.h \
|
|
path.c \
|
|
path.h \
|
|
platform.c \
|
|
platform.h \
|
|
pp.h \
|
|
program.c \
|
|
program.h \
|
|
register_state.c \
|
|
register_state.h \
|
|
serialize.c \
|
|
serialize.h \
|
|
siphash.h \
|
|
splay_tree.c \
|
|
stack_trace.c \
|
|
stack_trace.h \
|
|
string_builder.c \
|
|
string_builder.h \
|
|
symbol.c \
|
|
symbol.h \
|
|
type.c \
|
|
type.h \
|
|
util.h \
|
|
vector.c \
|
|
vector.h
|
|
|
|
libdrgnimpl_la_CFLAGS = -fvisibility=hidden $(OPENMP_CFLAGS) $(elfutils_CFLAGS)
|
|
libdrgnimpl_la_LIBADD = $(OPENMP_LIBS) $(elfutils_LIBS)
|
|
|
|
if WITH_LIBKDUMPFILE
|
|
libdrgnimpl_la_SOURCES += kdump.c
|
|
libdrgnimpl_la_CFLAGS += $(libkdumpfile_CFLAGS)
|
|
libdrgnimpl_la_LIBADD += $(libkdumpfile_LIBS)
|
|
endif
|
|
|
|
arch_%.inc: arch_%.defs build-aux/gen_arch.awk
|
|
$(AM_V_GEN)gawk -f $(word 2, $^) $< > $@
|
|
|
|
drgn.h: drgn.h.in configure.ac
|
|
$(AM_V_GEN)sed \
|
|
-e 's/@DRGN_VERSION_MAJOR@/$(word 1,$(subst ., ,@PACKAGE_VERSION@))/g' \
|
|
-e 's/@DRGN_VERSION_MINOR@/$(word 2,$(subst ., ,@PACKAGE_VERSION@))/g' \
|
|
-e 's/@DRGN_VERSION_PATCH@/$(word 3,$(subst ., ,@PACKAGE_VERSION@))/g' \
|
|
$< > $@
|
|
|
|
lib_LTLIBRARIES = libdrgn.la
|
|
|
|
libdrgn_la_SOURCES =
|
|
libdrgn_la_LDFLAGS = -version-info 0:0:0
|
|
libdrgn_la_LIBADD = libdrgnimpl.la
|
|
|
|
if WITH_PYTHON
|
|
BUILT_SOURCES += python/docstrings.h
|
|
|
|
noinst_LTLIBRARIES += _drgn.la
|
|
endif
|
|
|
|
_drgn_la_SOURCES = python/constants.c \
|
|
python/docstrings.c \
|
|
python/docstrings.h \
|
|
python/drgnpy.h \
|
|
python/error.c \
|
|
python/helpers.c \
|
|
python/language.c \
|
|
python/module.c \
|
|
python/object.c \
|
|
python/platform.c \
|
|
python/program.c \
|
|
python/stack_trace.c \
|
|
python/symbol.c \
|
|
python/test.c \
|
|
python/type.c \
|
|
python/util.c
|
|
|
|
_drgn_la_CFLAGS = -fvisibility=hidden
|
|
_drgn_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_CPPFLAGS) -iquote $(srcdir)/python \
|
|
-iquote python
|
|
_drgn_la_LDFLAGS = -Wl,--exclude-libs,ALL -avoid-version -module -shared \
|
|
-rpath $(pkgpyexecdir)
|
|
_drgn_la_LIBADD = libdrgnimpl.la
|
|
|
|
if WITH_LIBKDUMPFILE
|
|
_drgn_la_CFLAGS += $(libkdumpfile_CFLAGS)
|
|
endif
|
|
|
|
python/constants.c: drgn.h build-aux/gen_constants.py
|
|
$(AM_V_GEN)$(PYTHON) $(word 2, $^) < $< > $@
|
|
|
|
drgndoc_docstrings_deps = $(wildcard $(srcdir)/../docs/exts/drgndoc/*.py)
|
|
drgndoc_docstrings = PYTHONPATH="$(srcdir)/../docs/exts:$$PYTHONPATH" $(PYTHON) -m drgndoc.docstrings
|
|
|
|
python/docstrings.c: ../_drgn.pyi $(drgndoc_docstrings_deps)
|
|
$(AM_V_GEN)$(drgndoc_docstrings) -m _drgn:drgn $< > $@
|
|
|
|
python/docstrings.h: ../_drgn.pyi $(drgndoc_docstrings_deps)
|
|
$(AM_V_GEN)$(drgndoc_docstrings) -H -m _drgn:drgn $< > $@
|
|
|
|
EXTRA_DIST = $(ARCH_DEFS) \
|
|
build-aux/gen_arch.awk \
|
|
build-aux/gen_constants.py \
|
|
drgn.h.in
|
|
|
|
EXTRA_PROGRAMS = examples/load_debug_info
|
|
|
|
examples_load_debug_info_SOURCES = examples/load_debug_info.c
|
|
examples_load_debug_info_LDADD = libdrgnimpl.la
|