File: Makefile.am

package info (click to toggle)
gfbgraph 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 408 kB
  • sloc: ansic: 2,160; makefile: 154; xml: 81; sh: 15
file content (33 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (4)
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
SUBDIRS = gfbgraph docs tests
ACLOCAL_AMFLAGS = -I m4

libgfbgraphdocdir = ${prefix}/doc/libgfbgraph
libgfbgraphdoc_DATA = \
	README\
	COPYING\
	AUTHORS\
	ChangeLog\
	INSTALL\
	NEWS

%-$(API_VERSION).pc: %.pc
	$(AM_V_GEN)cp $< $@

pkgconfigdir   = $(libdir)/pkgconfig
pkgconfig_DATA = libgfbgraph-$(API_VERSION).pc

CLEANFILES = $(pkgconfig_DATA)

all-local: libgfbgraph-$(API_VERSION).pc

EXTRA_DIST = $(libgfbgraphdoc_DATA)

# Introspection
DISTCHECK_CONFIGURE_FLAGS = --enable-introspection
EXTRA_DIST += m4/introspection.m4

# Remove doc directory on uninstall
uninstall-local:
	-rm -r $(libgfbgraphdocdir)

-include $(top_srcdir)/git.mk