mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
d21be3b4e1
(from https://sourceware.org/elfutils/, GPL/LGPL licensed)
521 lines
23 KiB
Makefile
521 lines
23 KiB
Makefile
## Process this file with automake to create Makefile.in
|
|
##
|
|
## Copyright (C) 1996-2017 Red Hat, Inc.
|
|
## This file is part of elfutils.
|
|
##
|
|
## This file is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## elfutils is distributed in the hope that it will be useful, but
|
|
## WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
##
|
|
include $(top_srcdir)/config/eu.am
|
|
BUILD_RPATH = \$$ORIGIN/../libasm:\$$ORIGIN/../libdw:\$$ORIGIN/../backends:\$$ORIGIN/../libelf
|
|
|
|
AM_LDFLAGS =
|
|
|
|
if !STANDALONE
|
|
AM_CPPFLAGS += -I$(top_srcdir)/libasm -I$(top_srcdir)/libdw \
|
|
-I$(top_srcdir)/libdwfl -I$(top_srcdir)/libdwelf \
|
|
-I$(top_srcdir)/libebl -I$(top_srcdir)/libelf \
|
|
-I$(top_srcdir)/lib -I..
|
|
AM_LDFLAGS += -Wl,-rpath-link,../libasm:../libdw:../libelf
|
|
endif
|
|
|
|
if TESTS_RPATH
|
|
AM_LDFLAGS += -Wl,-rpath,$(BUILD_RPATH)
|
|
tests_rpath = yes
|
|
else
|
|
tests_rpath = no
|
|
endif
|
|
|
|
check_PROGRAMS = arextract arsymtest newfile saridx scnnames sectiondump \
|
|
showptable update1 update2 update3 update4 test-nlist \
|
|
show-die-info get-files get-lines get-pubnames \
|
|
get-aranges allfcts line2addr addrscopes funcscopes \
|
|
show-abbrev hash newscn ecp dwflmodtest \
|
|
find-prologues funcretval allregs rdwrmmap \
|
|
dwfl-bug-addr-overflow arls dwfl-bug-fd-leak \
|
|
dwfl-addr-sect dwfl-bug-report early-offscn \
|
|
dwfl-bug-getmodules dwarf-getmacros dwarf-ranges addrcfi \
|
|
test-flag-nobits dwarf-getstring rerequest_tag \
|
|
alldts md5-sha1-test typeiter typeiter2 low_high_pc \
|
|
test-elf_cntl_gelf_getshdr dwflsyms dwfllines \
|
|
dwfl-report-elf-align varlocs backtrace backtrace-child \
|
|
backtrace-data backtrace-dwarf debuglink debugaltlink \
|
|
buildid deleted deleted-lib.so aggregate_size peel_type \
|
|
vdsosyms \
|
|
getsrc_die strptr newdata elfstrtab dwfl-proc-attach \
|
|
elfshphehdr elfstrmerge dwelfgnucompressed elfgetchdr \
|
|
elfgetzdata elfputzdata zstrptr emptyfile vendorelf \
|
|
fillfile dwarf_default_lower_bound
|
|
|
|
asm_TESTS = asm-tst1 asm-tst2 asm-tst3 asm-tst4 asm-tst5 \
|
|
asm-tst6 asm-tst7 asm-tst8 asm-tst9
|
|
|
|
if BIARCH
|
|
check_PROGRAMS += backtrace-child-biarch
|
|
endif
|
|
|
|
# Substitute $(COMPILE).
|
|
backtrace-child-biarch$(EXEEXT): backtrace-child.c
|
|
$(AM_V_CC)$(CC_BIARCH) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
$(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
$(AM_CFLAGS) $(CFLAGS) $(backtrace_child_CFLAGS) \
|
|
$(AM_LDFLAGS) $(LDFLAGS) $(backtrace_child_LDFLAGS) \
|
|
-o $@ $<
|
|
|
|
TESTS = run-arextract.sh run-arsymtest.sh newfile test-nlist \
|
|
update1 update2 update3 update4 \
|
|
run-show-die-info.sh run-get-files.sh run-get-lines.sh \
|
|
run-get-pubnames.sh run-get-aranges.sh run-allfcts.sh \
|
|
run-show-abbrev.sh run-line2addr.sh hash \
|
|
newscn run-strip-test.sh run-strip-test2.sh \
|
|
run-strip-test3.sh run-strip-test4.sh run-strip-test5.sh \
|
|
run-strip-test6.sh run-strip-test7.sh run-strip-test8.sh \
|
|
run-strip-test9.sh run-strip-test10.sh run-strip-test11.sh \
|
|
run-strip-nothing.sh run-strip-g.sh \
|
|
run-strip-groups.sh run-strip-reloc.sh run-strip-strmerge.sh \
|
|
run-strip-nobitsalign.sh run-strip-remove-keep.sh \
|
|
run-unstrip-test.sh run-unstrip-test2.sh run-unstrip-test3.sh \
|
|
run-unstrip-test4.sh run-unstrip-M.sh run-elfstrmerge-test.sh \
|
|
run-ecp-test.sh run-ecp-test2.sh run-alldts.sh \
|
|
run-elflint-test.sh run-elflint-self.sh run-ranlib-test.sh \
|
|
run-ranlib-test2.sh run-ranlib-test3.sh run-ranlib-test4.sh \
|
|
run-addrscopes.sh run-strings-test.sh run-funcscopes.sh \
|
|
run-find-prologues.sh run-allregs.sh run-addrcfi.sh \
|
|
run-nm-self.sh run-readelf-self.sh \
|
|
run-readelf-test1.sh run-readelf-test2.sh run-readelf-test3.sh \
|
|
run-readelf-test4.sh run-readelf-twofiles.sh \
|
|
run-readelf-macro.sh run-readelf-loc.sh \
|
|
run-readelf-aranges.sh run-readelf-line.sh run-readelf-z.sh \
|
|
run-native-test.sh run-bug1-test.sh \
|
|
run-debuglink.sh run-debugaltlink.sh run-buildid.sh \
|
|
dwfl-bug-addr-overflow run-addrname-test.sh \
|
|
dwfl-bug-fd-leak dwfl-bug-report \
|
|
run-dwfl-bug-offline-rel.sh run-dwfl-addr-sect.sh \
|
|
run-disasm-x86.sh run-disasm-x86-64.sh \
|
|
run-early-offscn.sh run-dwarf-getmacros.sh run-dwarf-ranges.sh \
|
|
run-test-flag-nobits.sh run-prelink-addr-test.sh \
|
|
run-dwarf-getstring.sh run-rerequest_tag.sh run-typeiter.sh \
|
|
run-readelf-d.sh run-readelf-gdb_index.sh run-unstrip-n.sh \
|
|
run-low_high_pc.sh run-macro-test.sh run-elf_cntl_gelf_getshdr.sh \
|
|
run-test-archive64.sh run-readelf-vmcoreinfo.sh \
|
|
run-readelf-mixed-corenote.sh run-dwfllines.sh \
|
|
run-dwfl-report-elf-align.sh run-addr2line-test.sh \
|
|
run-addr2line-i-test.sh run-addr2line-i-lex-test.sh \
|
|
run-addr2line-i-demangle-test.sh run-addr2line-alt-debugpath.sh \
|
|
run-varlocs.sh run-funcretval.sh \
|
|
run-backtrace-native.sh run-backtrace-data.sh run-backtrace-dwarf.sh \
|
|
run-backtrace-native-biarch.sh run-backtrace-native-core.sh \
|
|
run-backtrace-native-core-biarch.sh run-backtrace-core-x86_64.sh \
|
|
run-backtrace-fp-core-x86_64.sh \
|
|
run-backtrace-fp-core-aarch64.sh \
|
|
run-backtrace-fp-core-ppc64le.sh \
|
|
run-backtrace-core-x32.sh \
|
|
run-backtrace-core-i386.sh run-backtrace-fp-core-i386.sh \
|
|
run-backtrace-core-ppc.sh \
|
|
run-backtrace-core-s390x.sh run-backtrace-core-s390.sh \
|
|
run-backtrace-core-aarch64.sh run-backtrace-core-sparc.sh \
|
|
run-backtrace-demangle.sh run-stack-d-test.sh run-stack-i-test.sh \
|
|
run-stack-demangled-test.sh run-readelf-zx.sh run-readelf-zp.sh \
|
|
run-readelf-dwz-multi.sh run-allfcts-multi.sh run-deleted.sh \
|
|
run-linkmap-cut.sh run-aggregate-size.sh run-peel-type.sh \
|
|
vdsosyms run-readelf-A.sh \
|
|
run-getsrc-die.sh run-strptr.sh newdata elfstrtab dwfl-proc-attach \
|
|
elfshphehdr run-lfs-symbols.sh run-dwelfgnucompressed.sh \
|
|
run-elfgetchdr.sh \
|
|
run-elfgetzdata.sh run-elfputzdata.sh run-zstrptr.sh \
|
|
run-compress-test.sh \
|
|
run-readelf-zdebug.sh run-readelf-zdebug-rel.sh \
|
|
emptyfile vendorelf fillfile dwarf_default_lower_bound
|
|
|
|
if !BIARCH
|
|
export ELFUTILS_DISABLE_BIARCH = 1
|
|
endif
|
|
|
|
if !DEMANGLE
|
|
export ELFUTILS_DISABLE_DEMANGLE = 1
|
|
endif
|
|
|
|
if !STANDALONE
|
|
check_PROGRAMS += msg_tst md5-sha1-test system-elf-libelf-test
|
|
TESTS += msg_tst md5-sha1-test system-elf-libelf-test
|
|
endif
|
|
|
|
if LZMA
|
|
TESTS += run-readelf-s.sh run-dwflsyms.sh
|
|
endif
|
|
|
|
if HAVE_LIBASM
|
|
check_PROGRAMS += $(asm_TESTS)
|
|
TESTS += $(asm_TESTS) run-disasm-bpf.sh
|
|
endif
|
|
|
|
EXTRA_DIST = run-arextract.sh run-arsymtest.sh \
|
|
run-show-die-info.sh run-get-files.sh run-get-lines.sh \
|
|
run-get-pubnames.sh run-get-aranges.sh \
|
|
run-show-abbrev.sh run-strip-test.sh \
|
|
run-strip-test2.sh run-ecp-test.sh run-ecp-test2.sh \
|
|
testfile.bz2 testfile2.bz2 testfile3.bz2 testfile4.bz2 \
|
|
testfile5.bz2 testfile6.bz2 testfile7.bz2 testfile8.bz2 \
|
|
testfile9.bz2 testfile10.bz2 testfile11.bz2 testfile12.bz2 \
|
|
testfile13.bz2 run-strip-test3.sh run-allfcts.sh \
|
|
testfile_class_func.bz2 testfile_nested_funcs.bz2 \
|
|
run-line2addr.sh run-elflint-test.sh testfile14.bz2 \
|
|
run-strip-test4.sh run-strip-test5.sh run-strip-test6.sh \
|
|
run-strip-test7.sh run-strip-test8.sh run-strip-groups.sh \
|
|
run-strip-test9.sh run-strip-test10.sh run-strip-test11.sh \
|
|
run-strip-nothing.sh run-strip-remove-keep.sh run-strip-g.sh \
|
|
run-strip-strmerge.sh run-strip-nobitsalign.sh \
|
|
testfile-nobitsalign.bz2 testfile-nobitsalign.strip.bz2 \
|
|
run-strip-reloc.sh hello_i386.ko.bz2 hello_x86_64.ko.bz2 \
|
|
hello_ppc64.ko.bz2 hello_s390.ko.bz2 hello_aarch64.ko.bz2 \
|
|
hello_m68k.ko.bz2 \
|
|
run-unstrip-test.sh run-unstrip-test2.sh \
|
|
testfile-info-link.bz2 testfile-info-link.debuginfo.bz2 \
|
|
testfile-info-link.stripped.bz2 run-unstrip-test3.sh \
|
|
run-unstrip-test4.sh testfile-strtab.bz2 \
|
|
testfile-strtab.stripped.bz2 testfile-strtab.debuginfo.bz2 \
|
|
run-unstrip-M.sh run-elfstrmerge-test.sh \
|
|
run-elflint-self.sh run-ranlib-test.sh run-ranlib-test2.sh \
|
|
run-ranlib-test3.sh run-ranlib-test4.sh \
|
|
run-addrscopes.sh run-strings-test.sh run-funcscopes.sh \
|
|
run-nm-self.sh run-readelf-self.sh run-addrcfi.sh \
|
|
run-find-prologues.sh run-allregs.sh run-native-test.sh \
|
|
run-addrname-test.sh run-dwfl-bug-offline-rel.sh \
|
|
run-dwfl-addr-sect.sh run-early-offscn.sh \
|
|
run-dwarf-getmacros.sh \
|
|
run-dwarf-ranges.sh debug-ranges-no-lowpc.o.bz2 \
|
|
run-test-flag-nobits.sh \
|
|
run-dwarf-getstring.sh run-rerequest_tag.sh run-alldts.sh \
|
|
testfile15.bz2 testfile15.debug.bz2 \
|
|
testfile16.bz2 testfile16.debug.bz2 \
|
|
testfile17.bz2 testfile17.debug.bz2 \
|
|
testfile18.bz2 testfile19.bz2 testfile19.index.bz2 \
|
|
testfile20.bz2 testfile20.index.bz2 \
|
|
testfile21.bz2 testfile21.index.bz2 \
|
|
testfile22.bz2 testfile23.bz2 testfile24.bz2 testfile25.bz2 \
|
|
testfile26.bz2 testfile27.bz2 \
|
|
coverage.sh test-subr.sh test-wrapper.sh \
|
|
run-readelf-test1.sh run-readelf-test2.sh run-readelf-test3.sh \
|
|
run-readelf-test4.sh run-readelf-twofiles.sh \
|
|
run-bug1-test.sh testfile28.bz2 testfile28.rdwr.bz2 \
|
|
run-debuglink.sh run-debugaltlink.sh run-buildid.sh \
|
|
testfile29.bz2 testfile29.rdwr.bz2 \
|
|
testfile30.bz2 testfile31.bz2 testfile32.bz2 testfile33.bz2 \
|
|
testfile34.bz2 testfile35.bz2 testfile35.debug.bz2 \
|
|
testfile36.bz2 testfile36.debug.bz2 \
|
|
testfile37.bz2 testfile37.debug.bz2 \
|
|
testfile38.bz2 testfile39.bz2 testfile40.bz2 testfile40.debug.bz2 \
|
|
testfile41.bz2 testfile42.bz2 testfile42_noshdrs.bz2 \
|
|
testfile43.bz2 \
|
|
testfile44.S.bz2 testfile44.expect.bz2 run-disasm-x86.sh \
|
|
testfile45.S.bz2 testfile45.expect.bz2 run-disasm-x86-64.sh \
|
|
testfile46.bz2 testfile47.bz2 testfile48.bz2 testfile48.debug.bz2 \
|
|
testfile49.bz2 testfile50.bz2 testfile51.bz2 \
|
|
testfile-macros-0xff.bz2 \
|
|
run-readelf-macro.sh testfilemacro.bz2 \
|
|
run-readelf-loc.sh testfileloc.bz2 \
|
|
run-readelf-aranges.sh run-readelf-line.sh testfilefoobarbaz.bz2 \
|
|
run-readelf-z.sh \
|
|
run-readelf-dwz-multi.sh libtestfile_multi_shared.so.bz2 \
|
|
testfile_multi.dwz.bz2 testfile_multi_main.bz2 \
|
|
testfile-dwzstr.bz2 testfile-dwzstr.multi.bz2 \
|
|
run-allfcts-multi.sh \
|
|
test-offset-loop.bz2 test-offset-loop.alt.bz2 \
|
|
run-prelink-addr-test.sh \
|
|
testfile52-32.so.bz2 testfile52-32.so.debug.bz2 \
|
|
testfile52-32.prelink.so.bz2 testfile52-32.noshdrs.so.bz2 \
|
|
testfile52-64.so.bz2 testfile52-64.so.debug.bz2 \
|
|
testfile52-64.prelink.so.bz2 testfile52-64.noshdrs.so.bz2 \
|
|
testfile53-32.bz2 testfile53-32.debug.bz2 \
|
|
testfile53-32.prelink.bz2 testfile53-64.bz2 \
|
|
testfile53-64.debug.bz2 testfile53-64.prelink.bz2 \
|
|
testfile54-32.so.bz2 testfile54-32.so.debug.bz2 \
|
|
testfile54-32.prelink.so.bz2 testfile54-32.noshdrs.so.bz2 \
|
|
testfile54-64.so.bz2 testfile54-64.so.debug.bz2 \
|
|
testfile54-64.prelink.so.bz2 testfile54-64.noshdrs.so.bz2 \
|
|
testfile55-32.bz2 testfile55-32.debug.bz2 \
|
|
testfile55-32.prelink.bz2 testfile55-64.bz2 \
|
|
testfile55-64.debug.bz2 testfile55-64.prelink.bz2 \
|
|
testfile56.bz2 testfile57.bz2 testfile58.bz2 \
|
|
run-typeiter.sh testfile59.bz2 \
|
|
run-readelf-d.sh testlib_dynseg.so.bz2 \
|
|
testfile-s390x-hash-both.bz2 \
|
|
run-readelf-gdb_index.sh testfilegdbindex5.bz2 \
|
|
testfilegdbindex7.bz2 \
|
|
run-readelf-s.sh testfilebazdbg.bz2 testfilebazdyn.bz2 \
|
|
testfilebazmin.bz2 testfilebazdbg.debug.bz2 testfilebazmdb.bz2 \
|
|
testfilebaztab.bz2 testfilebasmin.bz2 testfilebaxmin.bz2 \
|
|
testfilebazdbg_pl.bz2 testfilebazmin_pl.bz2 \
|
|
testfilebazdbg_plr.bz2 testfilebazmin_plr.bz2 \
|
|
testfilebazdbgppc64.bz2 testfilebazdbgppc64.debug.bz2 \
|
|
testfilebazdbgppc64_pl.bz2 testfilebazdbgppc64_plr.bz2 \
|
|
testfilebazdynppc64.bz2 testfilebazmdbppc64.bz2 \
|
|
testfilebazminppc64.bz2 testfilebazminppc64_pl.bz2 \
|
|
testfilebazminppc64_plr.bz2 testfilebaztabppc64.bz2 \
|
|
run-dwflsyms.sh \
|
|
run-unstrip-n.sh testcore-rtlib.bz2 testcore-rtlib-ppc.bz2 \
|
|
run-low_high_pc.sh testfile_low_high_pc.bz2 \
|
|
run-macro-test.sh testfile-macinfo.bz2 testfile-macros.bz2 \
|
|
run-elf_cntl_gelf_getshdr.sh \
|
|
run-test-archive64.sh testarchive64.a.bz2 \
|
|
testfile60.bz2 testfile61.bz2 \
|
|
run-readelf-vmcoreinfo.sh testfile62.bz2 \
|
|
run-readelf-mixed-corenote.sh testfile63.bz2 testfile64.bz2 \
|
|
testfile65.bz2 testfile67.bz2 testfile68.bz2 \
|
|
testfile69.core.bz2 testfile69.so.bz2 \
|
|
testfile70.core.bz2 testfile70.exec.bz2 testfile71.bz2 \
|
|
run-dwfllines.sh run-dwfl-report-elf-align.sh \
|
|
testfile-dwfl-report-elf-align-shlib.so.bz2 \
|
|
testfilenolines.bz2 test-core-lib.so.bz2 test-core.core.bz2 \
|
|
test-core.exec.bz2 run-addr2line-test.sh \
|
|
run-addr2line-i-test.sh testfile-inlines.bz2 \
|
|
run-addr2line-i-lex-test.sh testfile-lex-inlines.bz2 \
|
|
run-addr2line-i-demangle-test.sh run-addr2line-alt-debugpath.sh \
|
|
testfileppc32.bz2 testfileppc64.bz2 \
|
|
testfiles390.bz2 testfiles390x.bz2 \
|
|
testfilearm.bz2 testfileaarch64.bz2 \
|
|
run-varlocs.sh \
|
|
testfile_const_type.c testfile_const_type.bz2 \
|
|
testfile_implicit_pointer.c testfile_implicit_pointer.bz2 \
|
|
testfile_parameter_ref.c testfile_parameter_ref.bz2 \
|
|
testfile_entry_value.c testfile_entry_value.bz2 \
|
|
testfile_implicit_value.c testfile_implicit_value.bz2 \
|
|
testfile_aarch64_core.bz2 testfile_i686_core.bz2 \
|
|
run-funcretval.sh funcretval_test.c funcretval_test_aarch64.bz2 \
|
|
run-backtrace-data.sh run-backtrace-dwarf.sh cleanup-13.c \
|
|
run-backtrace-native.sh run-backtrace-native-biarch.sh \
|
|
run-backtrace-native-core.sh run-backtrace-native-core-biarch.sh \
|
|
run-backtrace-core-x86_64.sh run-backtrace-core-i386.sh \
|
|
run-backtrace-fp-core-x86_64.sh \
|
|
run-backtrace-core-x32.sh \
|
|
run-backtrace-fp-core-aarch64.sh \
|
|
backtrace.aarch64.fp.core.bz2 backtrace.aarch64.fp.exec.bz2 \
|
|
backtrace-subr.sh backtrace.i386.core.bz2 backtrace.i386.exec.bz2 \
|
|
run-backtrace-fp-core-i386.sh \
|
|
backtrace.i386.fp.core.bz2 backtrace.i386.fp.exec.bz2 \
|
|
run-backtrace-fp-core-ppc64le.sh \
|
|
backtrace.ppc64le.fp.core.bz2 backtrace.ppc64le.fp.exec.bz2 \
|
|
backtrace.x86_64.core.bz2 backtrace.x86_64.exec.bz2 \
|
|
backtrace.x86_64.fp.core.bz2 backtrace.x86_64.fp.exec.bz2 \
|
|
backtrace.ppc.core.bz2 backtrace.ppc.exec.bz2 \
|
|
run-backtrace-core-ppc.sh testfile66.bz2 testfile66.core.bz2 \
|
|
backtrace.s390x.core.bz2 backtrace.s390x.exec.bz2 \
|
|
backtrace.s390.core.bz2 backtrace.s390.exec.bz2 \
|
|
run-backtrace-core-s390x.sh run-backtrace-core-s390.sh \
|
|
run-backtrace-core-aarch64.sh \
|
|
backtrace.aarch64.core.bz2 backtrace.aarch64.exec.bz2 \
|
|
run-backtrace-core-sparc.sh \
|
|
backtrace.sparc.core.bz2 backtrace.sparc.exec.bz2 \
|
|
run-backtrace-demangle.sh testfile-backtrace-demangle.bz2 \
|
|
testfile-backtrace-demangle.cc \
|
|
testfile-backtrace-demangle.core.bz2 \
|
|
run-stack-d-test.sh run-stack-i-test.sh \
|
|
run-stack-demangled-test.sh \
|
|
testfiledwarfinlines.bz2 testfiledwarfinlines.core.bz2 \
|
|
run-readelf-zdebug.sh testfile-debug.bz2 testfile-zdebug.bz2 \
|
|
run-readelf-zdebug-rel.sh testfile-debug-rel.o.bz2 \
|
|
testfile-debug-rel-g.o.bz2 testfile-debug-rel-z.o.bz2 \
|
|
run-readelf-zx.sh run-readelf-zp.sh \
|
|
run-deleted.sh run-linkmap-cut.sh linkmap-cut-lib.so.bz2 \
|
|
linkmap-cut.bz2 linkmap-cut.core.bz2 \
|
|
run-aggregate-size.sh testfile-sizes1.o.bz2 testfile-sizes2.o.bz2 \
|
|
testfile-sizes3.o.bz2 run-peel-type.sh \
|
|
run-readelf-A.sh testfileppc32attrs.o.bz2 \
|
|
testfilesparc64attrs.o.bz2 testfileppc64attrs.o.bz2 \
|
|
testfile-debug-types.bz2 \
|
|
run-getsrc-die.sh run-strptr.sh \
|
|
testfile-x32-core.bz2 testfile-x32.bz2 \
|
|
backtrace.x32.core.bz2 backtrace.x32.exec.bz2 \
|
|
testfile-x32-s.bz2 testfile-x32-d.bz2 testfile-x32-debug.bz2 \
|
|
run-lfs-symbols.sh lfs-symbols testfile-nolfs.bz2 \
|
|
testfile-zgnu32.bz2 testfile-zgnu64.bz2 \
|
|
testfile-zgnu32be.bz2 testfile-zgnu64be.bz2 \
|
|
run-dwelfgnucompressed.sh \
|
|
testfile-zgabi32.bz2 testfile-zgabi64.bz2 \
|
|
testfile-zgabi32be.bz2 testfile-zgabi64be.bz2 \
|
|
run-elfgetchdr.sh run-elfgetzdata.sh run-elfputzdata.sh \
|
|
run-zstrptr.sh run-compress-test.sh \
|
|
run-disasm-bpf.sh \
|
|
testfile-bpf-dis1.expect.bz2 testfile-bpf-dis1.o.bz2 \
|
|
testfile-m68k-core.bz2 testfile-m68k.bz2 testfile-m68k-s.bz2
|
|
|
|
if USE_VALGRIND
|
|
valgrind_cmd='valgrind -q --leak-check=full --error-exitcode=1'
|
|
endif
|
|
|
|
|
|
installed_TESTS_ENVIRONMENT = libdir=$(DESTDIR)$(libdir); \
|
|
bindir=$(DESTDIR)$(bindir); \
|
|
LC_ALL=C; LANG=C; \
|
|
VALGRIND_CMD=$(valgrind_cmd); \
|
|
abs_srcdir=$(abs_srcdir); \
|
|
abs_builddir=$(abs_builddir); \
|
|
abs_top_builddir=$(abs_top_builddir); \
|
|
export abs_srcdir; export abs_builddir; \
|
|
export abs_top_builddir; \
|
|
export libdir; export bindir; \
|
|
export LC_ALL; export LANG; export VALGRIND_CMD; \
|
|
NM=$(NM); export NM;
|
|
installed_LOG_COMPILER = $(abs_srcdir)/test-wrapper.sh \
|
|
installed $(tests_rpath) \
|
|
'$(program_transform_name)'
|
|
if STANDALONE
|
|
TESTS_ENVIRONMENT = $(installed_TESTS_ENVIRONMENT)
|
|
LOG_COMPILER = $(installed_LOG_COMPILER)
|
|
else !STANDALONE
|
|
TESTS_ENVIRONMENT = LC_ALL=C; LANG=C; VALGRIND_CMD=$(valgrind_cmd); \
|
|
abs_srcdir=$(abs_srcdir); abs_builddir=$(abs_builddir); \
|
|
abs_top_builddir=$(abs_top_builddir); \
|
|
export abs_srcdir; export abs_builddir; \
|
|
export abs_top_builddir; \
|
|
export LC_ALL; export LANG; export VALGRIND_CMD; \
|
|
NM=$(NM); export NM;
|
|
LOG_COMPILER = $(abs_srcdir)/test-wrapper.sh \
|
|
$(abs_top_builddir)/libdw:$(abs_top_builddir)/backends:$(abs_top_builddir)/libelf:$(abs_top_builddir)/libasm
|
|
|
|
installcheck-local:
|
|
$(MAKE) $(AM_MAKEFLAGS) \
|
|
TESTS_ENVIRONMENT="$(installed_TESTS_ENVIRONMENT)" \
|
|
LOG_COMPILER="$(installed_LOG_COMPILER)" check-TESTS
|
|
endif !STANDALONE
|
|
|
|
if STANDALONE
|
|
libdw = -ldw
|
|
libelf = -lelf
|
|
libasm = -lasm
|
|
libebl = -lebl
|
|
else !STANDALONE
|
|
if BUILD_STATIC
|
|
libdw = ../libdw/libdw.a -lz $(zip_LIBS) $(libelf) $(libebl) -ldl
|
|
libelf = ../libelf/libelf.a -lz
|
|
libasm = ../libasm/libasm.a
|
|
else
|
|
libdw = ../libdw/libdw.so
|
|
libelf = ../libelf/libelf.so
|
|
libasm = ../libasm/libasm.so
|
|
endif
|
|
libebl = ../libebl/libebl.a
|
|
libeu = ../lib/libeu.a
|
|
endif !STANDALONE
|
|
|
|
arextract_LDADD = $(libelf)
|
|
arsymtest_LDADD = $(libelf)
|
|
newfile_LDADD = $(libelf)
|
|
saridx_LDADD = $(libelf)
|
|
scnnames_LDADD = $(libelf)
|
|
sectiondump_LDADD = $(libelf)
|
|
showptable_LDADD = $(libelf)
|
|
hash_LDADD = $(libelf)
|
|
test_nlist_LDADD = $(libelf)
|
|
msg_tst_LDADD = $(libelf)
|
|
newscn_LDADD = $(libelf)
|
|
early_offscn_LDADD = $(libelf)
|
|
ecp_LDADD = $(libelf)
|
|
update1_LDADD = $(libelf)
|
|
update2_LDADD = $(libelf)
|
|
update3_LDADD = $(libdw) $(libelf)
|
|
update4_LDADD = $(libdw) $(libelf)
|
|
show_die_info_LDADD = $(libdw) $(libelf)
|
|
get_pubnames_LDADD = $(libdw) $(libelf)
|
|
show_abbrev_LDADD = $(libdw) $(libelf)
|
|
get_lines_LDADD = $(libdw) $(libelf)
|
|
get_files_LDADD = $(libdw) $(libelf)
|
|
get_aranges_LDADD = $(libdw) $(libelf)
|
|
allfcts_LDADD = $(libdw) $(libelf)
|
|
line2addr_LDADD = $(libdw) $(argp_LDADD)
|
|
addrscopes_LDADD = $(libdw) $(argp_LDADD)
|
|
funcscopes_LDADD = $(libdw) $(argp_LDADD)
|
|
funcretval_LDADD = $(libdw) $(argp_LDADD)
|
|
allregs_LDADD = $(libdw) $(argp_LDADD)
|
|
find_prologues_LDADD = $(libdw) $(argp_LDADD)
|
|
#show_ciefde_LDADD = ../libdwarf/libdwarf.so $(libelf)
|
|
asm_tst1_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst2_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst3_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst4_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst5_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst6_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst7_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst8_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
asm_tst9_LDADD = $(libasm) $(libebl) $(libelf) $(libdw) -ldl
|
|
dwflmodtest_LDADD = $(libdw) $(libebl) $(libelf) $(argp_LDADD) -ldl
|
|
rdwrmmap_LDADD = $(libelf)
|
|
dwfl_bug_addr_overflow_LDADD = $(libdw) $(libebl) $(libelf) -ldl
|
|
arls_LDADD = $(libelf)
|
|
dwfl_bug_fd_leak_LDADD = $(libdw) $(libebl) $(libelf) -ldl
|
|
dwfl_bug_report_LDADD = $(libdw) $(libebl) $(libelf) -ldl
|
|
dwfl_bug_getmodules_LDADD = $(libdw) $(libebl) $(libelf) -ldl
|
|
dwfl_addr_sect_LDADD = $(libdw) $(libebl) $(libelf) $(argp_LDADD) -ldl
|
|
dwarf_getmacros_LDADD = $(libdw)
|
|
dwarf_ranges_LDADD = $(libdw)
|
|
dwarf_getstring_LDADD = $(libdw)
|
|
addrcfi_LDADD = $(libdw) $(libebl) $(libelf) $(argp_LDADD) -ldl
|
|
test_flag_nobits_LDADD = $(libelf)
|
|
rerequest_tag_LDADD = $(libdw)
|
|
alldts_LDADD = $(libdw) $(libelf)
|
|
md5_sha1_test_LDADD = $(libeu)
|
|
typeiter_LDADD = $(libdw) $(libelf)
|
|
typeiter2_LDADD = $(libdw) $(libelf)
|
|
low_high_pc_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
test_elf_cntl_gelf_getshdr_LDADD = $(libelf)
|
|
dwflsyms_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
dwfllines_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
dwfl_report_elf_align_LDADD = $(libdw)
|
|
varlocs_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
backtrace_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
# backtrace-child-biarch also uses those *_CFLAGS and *_LDLAGS variables:
|
|
backtrace_child_CFLAGS = -fPIE
|
|
backtrace_child_LDFLAGS = -pie -pthread
|
|
backtrace_child_biarch_SOURCES = backtrace-child.c
|
|
backtrace_data_LDADD = $(libdw) $(libelf)
|
|
backtrace_dwarf_CFLAGS = -Wno-unused-parameter
|
|
backtrace_dwarf_LDADD = $(libdw) $(libelf)
|
|
debuglink_LDADD = $(libdw) $(libelf)
|
|
debugaltlink_LDADD = $(libdw) $(libelf)
|
|
buildid_LDADD = $(libdw) $(libelf)
|
|
deleted_LDADD = ./deleted-lib.so
|
|
deleted_lib_so_LDFLAGS = -shared -rdynamic
|
|
deleted_lib_so_CFLAGS = -fPIC -fasynchronous-unwind-tables
|
|
aggregate_size_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
peel_type_LDADD = $(libdw) $(libelf) $(argp_LDADD)
|
|
vdsosyms_LDADD = $(libdw) $(libelf)
|
|
getsrc_die_LDADD = $(libdw) $(libelf)
|
|
strptr_LDADD = $(libelf)
|
|
newdata_LDADD = $(libelf)
|
|
elfstrtab_LDADD = $(libelf)
|
|
dwfl_proc_attach_LDADD = $(libdw)
|
|
dwfl_proc_attach_LDFLAGS = -pthread $(AM_LDFLAGS)
|
|
elfshphehdr_LDADD =$(libelf)
|
|
elfstrmerge_LDADD = $(libdw) $(libelf)
|
|
dwelfgnucompressed_LDADD = $(libelf) $(libdw)
|
|
elfgetchdr_LDADD = $(libelf) $(libdw)
|
|
elfgetzdata_LDADD = $(libelf)
|
|
elfputzdata_LDADD = $(libelf)
|
|
zstrptr_LDADD = $(libelf)
|
|
emptyfile_LDADD = $(libelf)
|
|
vendorelf_LDADD = $(libelf)
|
|
fillfile_LDADD = $(libelf)
|
|
dwarf_default_lower_bound_LDADD = $(libdw)
|
|
|
|
# We want to test the libelf header against the system elf.h header.
|
|
# Don't include any -I CPPFLAGS.
|
|
system_elf_libelf_test_CPPFLAGS =
|
|
system_elf_libelf_test_LDADD = $(libelf)
|
|
|
|
if GCOV
|
|
check: check-am coverage
|
|
.PHONY: coverage
|
|
coverage:
|
|
-$(srcdir)/coverage.sh
|
|
endif
|