mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-27 04:02:07 +00:00
d041c1f5dd
* tests/data/test-bidiff: Rename this directory to tests/data/test-abidiff. * tests/test-bidiff.cc: Renamed this to tests/test-abidiff.cc. * tools/biar.cc: Renamed to tools/abiar.cc * tools/bidiff.cc: Renamed to tools/abidiff.cc * tools/bidw.cc: Renamed to tools/abidw.cc * tools/bilint.cc: Renamed to tools/abilint.cc * tools/bisym.cc: Renamed to tools/abisym.cc * tests/test-alt-dwarf-file.cc: Renamed references to bidw* to abidw*. * tests/test-diff-filter.cc: Renamed references to bidiff to abidiff. * tests/test-lookup-syms.cc: Renamed references to bisym to abisym. * tools/Makefile.am: Adjust. * tests/Makefile.am: Likewise. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
38 lines
849 B
Makefile
38 lines
849 B
Makefile
h=$(abs_srcdir)
|
|
|
|
noinst_LTLIBRARIES = libtoolsutils.la
|
|
libtoolsutils_la_SOURCES= \
|
|
abg-tools-utils.h \
|
|
abg-tools-utils.cc
|
|
|
|
if ENABLE_ZIP_ARCHIVE
|
|
bin_PROGRAMS = abiar abidiff abilint abidw abisym
|
|
else
|
|
bin_PROGRAMS = abidiff abilint abidw abisym
|
|
endif
|
|
|
|
|
|
if ENABLE_ZIP_ARCHIVE
|
|
abiar_SOURCES = abiar.cc
|
|
abiardir = $(bindir)
|
|
abiar_LDADD = ../src/libabigail.la libtoolsutils.la
|
|
endif
|
|
|
|
abidiff_SOURCES = abidiff.cc
|
|
abidiffdir = $(bindir)
|
|
abidiff_LDADD = ../src/libabigail.la libtoolsutils.la
|
|
|
|
abilint_SOURCES = abilint.cc
|
|
abilintdir = $(bindir)
|
|
abilint_LDADD = ../src/libabigail.la libtoolsutils.la
|
|
|
|
abidw_SOURCES = abidw.cc
|
|
abidwdir = $(bindir)
|
|
abidw_LDADD = ../src/libabigail.la libtoolsutils.la
|
|
|
|
abisym_SOURCES = abisym.cc
|
|
abisymdir = $(bindir)
|
|
abisym_LDADD = ../src/libabigail.la
|
|
|
|
AM_CPPFLAGS=-I$(abs_top_srcdir)/include -I$(abs_top_srcdir)/tools
|