Updated Norwegian bokmål translation. Same.
[bug-buddy.git] / Makefile.am
blob3222a3f7c200485cdc1c1ed13fab5d816010880b
1 SUBDIRS = po pixmaps src bugzilla docs
3 schemasdir       = $(GCONF_SCHEMA_FILE_DIR)
4 schemas_in_files = bug-buddy.schemas.in
5 schemas_DATA     = $(schemas_in_files:.schemas.in=.schemas)
7 EXTRA_DIST = \
8         bug-buddy.spec.in                               \
9         bug-buddy.spec                                  \
10         gnome-doc-utils.make                            \
11         intltool-extract.in                             \
12         intltool-merge.in                               \
13         intltool-update.in                              \
14         COPYING.ximian-logos                            \
15         omf.make                                        \
16         xmldocs.make                                    \
17         $(schemas_in_files)                             \
18         $(schemas_DATA)
20 DISTCLEANFILES =                                        \
21         intltool-extract                                \
22         intltool-merge                                  \
23         intltool-update                                 \
24         gnome-doc-utils.make
26 distuninstallcheck_listfiles =  \
27 find -regex '.*/var/scrollkeeper/.*' -prune -or -type f -print
29 if GCONF_SCHEMAS_INSTALL
30 install-data-local:
31         if test -z "$(DESTDIR)" ; then \
32                 for p in $(schemas_DATA) ; do \
33                         GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p ; \
34                 done \
35         fi
36 else
37 install-data-local:
38 endif
43 # this should probably be run at dist time or something
44 update-bugzilla:
45         cd $(top_srcdir)/bugzilla/ximian/ \
46         && for file in products config mostfreq; do \
47                 wget "http://bugzilla.ximian.com/bugzilla-$$file.xml" -O $$file.tmp \
48                 && (cmp -s $$file.tmp $$file || cp -v $$file.tmp $$file) \
49                 && rm -f $$file.tmp; \
50         done
51         cd $(top_srcdir)/bugzilla/gnome/ \
52         && for file in products config mostfreq; do \
53                 wget "http://bugzilla.gnome.org/bugzilla.gnome.org/bugzilla-$$file.xml" -O $$file.tmp \
54                 && (cmp -s $$file.tmp $$file || cp -v $$file.tmp $$file) \
55                 && rm -f $$file.tmp; \
56         done