blob: 6b19ebaa6fbd9d1fd9f9878e9dfcf259794624f3 (
plain)
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
|
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
SUBDIRS = build scripts clutter-gst tests examples
if BUILD_GTK_DOC
SUBDIRS += doc
endif
DIST_SUBDIRS = build scripts clutter-gst tests examples doc
ACLOCAL_AMFLAGS = -I build/autotools
clutter-gst-$(CLUTTER_GST_API_VERSION).pc: clutter-gst.pc
$(QUIET_GEN)cp -f clutter-gst.pc $@
pkgconfig_DATA = clutter-gst-$(CLUTTER_GST_API_VERSION).pc
pkgconfigdir = $(libdir)/pkgconfig
EXTRA_DIST = clutter-gst.pc.in
CLEANFILES = clutter-gst.pc clutter-gst-$(CLUTTER_GST_API_VERSION).pc
DISTCLEANFILES = doltcompile doltlibtool
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
# Extra clean files so that maintainer-clean removes *everything*
MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub \
configure depcomp install-sh ltmain.sh \
Makefile.in missing config.h.in
|