a1b977a2fccb3e422a188e683e781a807add00cb
[familia.git] / Makefile.am
1 AUTOMAKE_OPTIONS = gnu subdir-objects
2 ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
3 SUBDIRS = po
4
5 EXTRA_DIST = \
6         config.rpath \
7         data/gui.glade \
8         src/gettext.h \
9         doc/CodingStyle
10
11 MAINTAINERCLEANFILES = \
12         aclocal.m4 \
13         config.h.in \
14         config.log \
15         config.status \
16         configure \
17         configure.files \
18         stamp-h.in \
19         depcomp \
20         install-sh \
21         missing
22
23
24 CLEANFILES = \
25         %.o \
26         %.bak \
27         %~ \
28         doxyfile.stamp
29
30 bin_PROGRAMS = bin/familia
31 noinst_HEADERS = src/i18n.h
32 dist_noinst_SCRIPTS = autogen.sh
33
34 bin_familia_SOURCES = \
35         src/dialogs/about_dialog.c \
36         src/dialogs/openfile_dialog.c \
37         src/viewport/drawing_area.c \
38         src/storage/storage.c \
39         src/storage/individual.c \
40         src/storage/family.c \
41         src/storage/positions.c \
42         src/math/positions.c \
43         src/graphics/individual.c \
44         src/gedcom/familia_gedcom.c \
45         src/memory_stack.c \
46         src/gui.c \
47         src/main.c \
48         src/debug.c \
49         src/commandline.c
50
51 bin_familia_CPPFLAGS = \
52         $(bin_familia_CFLAGS) \
53         -Wall -pedantic -Wextra \
54         @GEDCOM_CFLAGS@ \
55         -I$(top_srcdir)/src \
56         -Wl,--export-dynamic
57
58 bin_familia_LDADD = \
59         $(bin_familia_LIBS) \
60         $(GLU_LIBS) \
61         @GEDCOM_LIBS@ \
62         -L/usr/lib \
63         -lzip
64
65 bin_familia_LDFLAGS = $(LTLIBINTL)
66
67 localedir = $(datadir)/locale
68
69 DEFS = -DLOCALEDIR=\"$(localedir)\" \
70          -DDATADIR=\"$(pkgdatadir)\" \
71         @DEFS@
72
73 all-local: doxyfile.stamp
74         test -d bin/data || mkdir bin/data
75         cp data/gui.glade bin/data/
76         cp -r data/pixmaps bin/data/
77
78 # Documentation
79
80 if HAVE_DOXYGEN
81
82 directory = $(top_srcdir)/doc/man/man3
83
84 doxyfile.stamp:
85         $(DOXYGEN) Doxyfile
86         echo Timestamp > doxyfile.stamp
87
88 #all-local: doxyfile.stamp
89
90 clean-local:
91         rm -rf $(top_srcdir)/doc/man
92
93 endif
94
95 # Localization
96
97 check-gettext:
98         @if test x$(USE_NLS) != "xyes" ; then echo "Missing gettext. Rerun configure and check for" \
99         "'checking whether to use NLS... yes'!" ; exit 1 ; fi
100
101 update-po: check-gettext
102         @find $(srcdir)/src $(srcdir)/data -name '*[glade|c|h]' -type f -print | sort > $(srcdir)/po/POTFILES.in.2 ; \
103         if diff $(srcdir)/po/POTFILES.in $(srcdir)/po/POTFILES.in.2 >/dev/null 2>&1 ; then \
104                 rm -f $(srcdir)/po/POTFILES.in.2 ; \
105         else \
106                 mv $(srcdir)/po/POTFILES.in.2 $(srcdir)/po/POTFILES.in ; \
107         fi
108         cd po && $(MAKE) $(AM_MAKEFLAGS) update-po
109
110 update-gmo: check-gettext
111         cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo
112
113 force-update-gmo: check-gettext
114         touch po/*.po
115         cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo
116
117 force-update-gmo-%: check-gettext
118         @language=`echo $@ | sed s/force-update-gmo-//` ; \
119         if test ! -f po/$$language.po ; then echo "file po/$$language.po does not exist" ; exit 1 ; fi ; \
120         touch po/$$language.po ; \
121         cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo
122
123 .PHONY: check-gettext update-po update-gmo force-update-gmo