File: Makefile.am

package info (click to toggle)
bug-buddy 2.14.0-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,412 kB
  • ctags: 517
  • sloc: ansic: 4,722; xml: 2,278; sh: 896; makefile: 171
file content (58 lines) | stat: -rw-r--r-- 1,569 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
SUBDIRS = po pixmaps src bugzilla docs

schemasdir       = $(GCONF_SCHEMA_FILE_DIR)
schemas_in_files = bug-buddy.schemas.in
schemas_DATA     = $(schemas_in_files:.schemas.in=.schemas)

EXTRA_DIST = \
	bug-buddy.spec.in				\
	bug-buddy.spec					\
	gnome-doc-utils.make				\
	intltool-extract.in				\
	intltool-merge.in				\
	intltool-update.in				\
	COPYING.ximian-logos				\
	omf.make					\
	xmldocs.make					\
	$(schemas_in_files)				\
	$(schemas_DATA)

DISTCLEANFILES =					\
	intltool-extract  				\
	intltool-merge    				\
	intltool-update					\
	gnome-doc-utils.make

DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper

distuninstallcheck_listfiles =  \
find -regex '.*/var/scrollkeeper/.*' -prune -or -type f -print

if GCONF_SCHEMAS_INSTALL
install-data-local:
	if test -z "$(DESTDIR)" ; then \
		for p in $(schemas_DATA) ; do \
			GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p ; \
		done \
	fi
else
install-data-local:
endif




# this should probably be run at dist time or something
update-bugzilla:
	cd $(top_srcdir)/bugzilla/ximian/ \
	&& for file in products config mostfreq; do \
		wget "http://bugzilla.ximian.com/bugzilla-$$file.xml" -O $$file.tmp \
		&& (cmp -s $$file.tmp $$file || cp -v $$file.tmp $$file) \
		&& rm -f $$file.tmp; \
	done
	cd $(top_srcdir)/bugzilla/gnome/ \
	&& for file in products config mostfreq; do \
		wget "http://bugzilla.gnome.org/bugzilla.gnome.org/bugzilla-$$file.xml" -O $$file.tmp \
		&& (cmp -s $$file.tmp $$file || cp -v $$file.tmp $$file) \
		&& rm -f $$file.tmp; \
	done