Displaying all loaded objects horizontally.
[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/ui/drawing_area.c \
38         src/ui/scrollbars.c \
39         src/storage/storage.c \
40         src/storage/individual.c \
41         src/storage/family.c \
42         src/storage/positions.c \
43         src/math/positions.c \
44         src/math/camera.c \
45         src/graphics/individual.c \
46         src/graphics/family.c \
47         src/gedcom/familia_gedcom.c \
48         src/memory_stack.c \
49         src/gui.c \
50         src/main.c \
51         src/debug.c \
52         src/commandline.c
53
54 bin_familia_CPPFLAGS = \
55         $(bin_familia_CFLAGS) \
56         -Wall -pedantic -Wextra \
57         @GEDCOM_CFLAGS@ \
58         -I$(top_srcdir)/src \
59         -Wl,--export-dynamic
60
61 bin_familia_LDADD = \
62         $(bin_familia_LIBS) \
63         $(GLU_LIBS) \
64         @GEDCOM_LIBS@ \
65         -L/usr/lib \
66         -lzip
67
68 bin_familia_LDFLAGS = $(LTLIBINTL)
69
70 localedir = $(datadir)/locale
71
72 DEFS = -DLOCALEDIR=\"$(localedir)\" \
73          -DDATADIR=\"$(pkgdatadir)\" \
74         @DEFS@
75
76 all-local: doxyfile.stamp
77         test -d bin/data || mkdir bin/data
78         cp data/gui.glade bin/data/
79         cp -r data/pixmaps bin/data/
80
81 # Documentation
82
83 if HAVE_DOXYGEN
84
85 directory = $(top_srcdir)/doc/man/man3
86
87 doxyfile.stamp:
88         $(DOXYGEN) Doxyfile
89         echo Timestamp > doxyfile.stamp
90
91 #all-local: doxyfile.stamp
92
93 clean-local:
94         rm -rf $(top_srcdir)/doc/man
95
96 endif
97
98 # Localization
99
100 check-gettext:
101         @if test x$(USE_NLS) != "xyes" ; then echo "Missing gettext. Rerun configure and check for" \
102         "'checking whether to use NLS... yes'!" ; exit 1 ; fi
103
104 update-po: check-gettext
105         @find $(srcdir)/src $(srcdir)/data -name '*[glade|c|h]' -type f -print | sort > $(srcdir)/po/POTFILES.in.2 ; \
106         if diff $(srcdir)/po/POTFILES.in $(srcdir)/po/POTFILES.in.2 >/dev/null 2>&1 ; then \
107                 rm -f $(srcdir)/po/POTFILES.in.2 ; \
108         else \
109                 mv $(srcdir)/po/POTFILES.in.2 $(srcdir)/po/POTFILES.in ; \
110         fi
111         cd po && $(MAKE) $(AM_MAKEFLAGS) update-po
112
113 update-gmo: check-gettext
114         cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo
115
116 force-update-gmo: check-gettext
117         touch po/*.po
118         cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo
119
120 force-update-gmo-%: check-gettext
121         @language=`echo $@ | sed s/force-update-gmo-//` ; \
122         if test ! -f po/$$language.po ; then echo "file po/$$language.po does not exist" ; exit 1 ; fi ; \
123         touch po/$$language.po ; \
124         cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo
125
126 .PHONY: check-gettext update-po update-gmo force-update-gmo