mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-09 16:50:24 +01:00
* tools/dbus-send.c, tools/dbus-monitor.c: two utility programs from Philip Blundell to send messages and monitor them.
56 lines
No EOL
1.2 KiB
Makefile
56 lines
No EOL
1.2 KiB
Makefile
|
|
if HAVE_GLIB
|
|
GLIB_SUBDIR=glib
|
|
GLIB_PC=dbus-glib-1.0.pc
|
|
endif
|
|
|
|
if HAVE_QT
|
|
QT_SUBDIR=qt
|
|
endif
|
|
|
|
SUBDIRS=dbus bus test doc $(GLIB_SUBDIR) $(QT_SUBDIR) tools
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = dbus-1.0.pc $(GLIB_PC)
|
|
|
|
DISTCLEANFILES = \
|
|
dbus-1.0.pc \
|
|
$(GLIB_PC)
|
|
|
|
EXTRA_DIST = \
|
|
HACKING \
|
|
dbus-1.0.pc.in \
|
|
dbus-glib-1.0.pc.in
|
|
|
|
all-local: Doxyfile
|
|
|
|
if DBUS_GCOV_ENABLED
|
|
clean-gcov:
|
|
find -name "*.da" -o -name "*.gcov" | xargs rm || true
|
|
|
|
## .PHONY so it always rebuilds it
|
|
.PHONY: coverage-report.txt
|
|
coverage-report.txt:
|
|
GCOV_FILES=`find dbus bus $(GLIB_SUBDIR) $(QT_SUBDIR) -name "*.bbg"` ; \
|
|
C_FILES= ; \
|
|
for F in $$GCOV_FILES; do \
|
|
C=`echo $$F | sed -e 's/.bbg/.c/g'` ; \
|
|
DA=`echo $$F | sed -e 's/.bbg/.da/g'` ; \
|
|
if test -e $$DA ; then \
|
|
C_FILES="$$C_FILES $$C" ; \
|
|
fi ; \
|
|
done ; \
|
|
echo $$C_FILES ; \
|
|
$(top_builddir)/test/decode-gcov --report $$C_FILES > coverage-report.txt
|
|
|
|
check-coverage: clean-gcov all check coverage-report.txt
|
|
cat coverage-report.txt
|
|
|
|
else
|
|
coverage-report.txt:
|
|
echo "Need to reconfigure with --enable-gcov"
|
|
|
|
check-coverage:
|
|
echo "Need to reconfigure with --enable-gcov"
|
|
|
|
endif |