File: Makefile.am

package info (click to toggle)
verbiste 0.1.49-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,260 kB
  • sloc: xml: 24,823; ansic: 9,087; sh: 5,258; cpp: 4,480; makefile: 1,021; yacc: 288; perl: 281; lisp: 215; java: 47; sed: 16
file content (91 lines) | stat: -rw-r--r-- 1,807 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# $Id: Makefile.am,v 1.28 2023/08/03 01:35:22 sarrazip Exp $

SUBDIRS = intl src po macros
if BUILD_EXAMPLES
SUBDIRS += examples
endif

libdatadir = $(datarootdir)/$(PACKAGE)-$(API)
libdata_DATA = \
	data/conjugation-fr.xml \
	data/verbs-fr.xml \
	data/conjugation-it.xml \
	data/verbs-it.xml \
	COPYING
# COPYING contains the license; main-window.cpp expects it there.

doc_DATA = \
	AUTHORS \
	COPYING \
	NEWS \
	README \
	LISEZMOI \
	HACKING \
	THANKS

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(PACKAGE)-$(API).pc

man_MANS = \
	doc/$(PACKAGE).3 \
	doc/french-conjugator.1 \
	doc/french-deconjugator.1

frman1dir = $(mandir)/fr/man1
frman1_DATA = \
	doc/fr/french-conjugator.1 \
	doc/fr/french-deconjugator.1

frman3dir = $(mandir)/fr/man3
frman3_DATA = \
	doc/fr/$(PACKAGE).3

RPMBUILD = rpmbuild
rpm: dist
	$(RPMBUILD) -ta $(distdir).tar.gz

VALIDATEXML = $(XMLLINT) --noout --valid

.PHONY: check-data
check-data:
	$(VALIDATEXML) $(srcdir)/data/verbs-it.xml
	$(VALIDATEXML) $(srcdir)/data/conjugation-it.xml
	$(VALIDATEXML) $(srcdir)/data/verbs-fr.xml
	$(VALIDATEXML) $(srcdir)/data/conjugation-fr.xml
	$(PERL) -cw $(srcdir)/data/check-data.pl
	$(PERL) $(srcdir)/data/check-data.pl $(srcdir)/data

check: check-data

DISTCHECK_CONFIGURE_FLAGS = --without-included-gettext

EXTRA_DIST = \
	bootstrap \
	autogen.sh \
	config.rpath \
	mkinstalldirs \
	LISEZMOI \
	HACKING \
	$(libdata_DATA) \
	$(PACKAGE).spec \
	doc/fr/verbiste.3.in \
	doc/fr/french-conjugator.1.in \
	doc/fr/french-deconjugator.1.in \
	doc/verbiste.3.in \
	doc/french-conjugator.1.in \
	doc/french-deconjugator.1.in \
	data/check-data.pl

ACLOCAL_AMFLAGS = -I macros

MAINTAINERCLEANFILES = \
	Makefile.in \
	aclocal.m4 \
	configure \
	config.guess \
	config.sub \
	depcomp \
	install-sh \
	ltmain.sh \
	missing \
	compile