File: Makefile.am

package info (click to toggle)
cattle-1.0 1.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,412 kB
  • sloc: sh: 4,165; ansic: 3,936; xml: 325; makefile: 323
file content (50 lines) | stat: -rw-r--r-- 772 bytes parent folder | download
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
48
49
50
NULL =

SUBDIRS = \
	cattle \
	docs \
	examples \
	tests \
	$(NULL)

pkgconfigdir = $(libdir)/pkgconfig
nodist_pkgconfig_DATA = \
	cattle-1.0.pc \
	$(NULL)

docdir = $(datarootdir)/doc/cattle-1.0
dist_doc_DATA = \
	AUTHORS.markdown \
	ChangeLog \
	ChangeLog.pre-0.9.2 \
	COPYING \
	NEWS.markdown \
	README.markdown \
	TODO.markdown \
	$(NULL)

EXTRA_DIST = \
	INSTALL.markdown \
	$(NULL)

CLEANFILES = \
	$(NULL)

ChangeLog:
	$(AM_V_GEN) \
	if test -d "$(top_srcdir)/.git"; \
	then \
	  GIT_DIR="$(top_srcdir)/.git" \
	  $(top_srcdir)/missing \
	    --run git log --color=never --stat \
	  >$@.tmp \
	  && mv -f $@.tmp $@ \
	  || ( $(RM) -f $@.tmp; false ) \
	fi

.PHONY: ChangeLog

DISTCHECK_CONFIGURE_FLAGS = \
	--enable-introspection=yes \
	--enable-gtk-doc \
	$(NULL)