forked from GNOME/gdk-pixbuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
47 lines (37 loc) · 1.01 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
SUBDIRS = gdk-pixbuf po docs thumbnailer tests contrib win32
EXTRA_DIST = \
config.h.win32 \
glib-tap.mk \
tap-driver.sh \
tap-test
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gdk-pixbuf-2.0.pc
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
DISTCLEANFILES = \
gdk-pixbuf-2.0.pc
DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
--enable-man \
--enable-introspection
MAINTAINERCLEANFILES = \
ABOUT-NLS \
aclocal.m4 \
config.guess \
config.h.in \
config.rpath \
config.sub \
depcomp \
gtk-doc.make \
install-sh \
ltmain.sh \
missing
if WITH_COVERAGE
.PHONY: coverage clear-coverage
coverage:
$(AM_V_GEN) $(LCOV) --quiet --directory $(top_builddir) --capture --output-file $(top_builddir)/coverage.info --no-checksum --compat-libtool; \
$(GENHTML) --quiet --output-directory $(top_builddir)/coverage $(top_builddir)/coverage.info
@echo "file://$(abs_top_builddir)/coverage/index.html"
clear-coverage:
$(AM_V_GEN) $(LCOV) --directory . --zerocounters
endif
-include $(top_srcdir)/git.mk