~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

1 by Brandon Hale
Import upstream version 0.2.0
1
SUBDIRS = data libtomboy Tomboy test po help
1.1.46 by Pedro Fragoso
Import upstream version 0.13.5
2
1.1.1 by Daniel Holbach
Import upstream version 0.3.1
3
EXTRA_DIST = 			\
4
	gnome-doc-utils.make	\
1.1.4 by Andrew Mitchell
Import upstream version 0.3.9+dfsg
5
	\
6
	intltool-extract.in     \
7
	intltool-merge.in       \
8
	intltool-update.in	\
9
	\
10
	Makefile.include	\
1.1.21 by Sebastian Dröge
Import upstream version 0.7.2
11
	\
12
	tomboy.spec.in		\
1.1.1 by Daniel Holbach
Import upstream version 0.3.1
13
	tomboy.spec			\
1.1.7 by Sebastian Dröge
Import upstream version 0.5.0
14
	\
15
	MAINTAINERS
16
1 by Brandon Hale
Import upstream version 0.2.0
17
DISTCLEANFILES = 			\
18
	gnome-doc-utils.make		\
1.1.4 by Andrew Mitchell
Import upstream version 0.3.9+dfsg
19
	\
20
	intltool-extract        	\
1 by Brandon Hale
Import upstream version 0.2.0
21
	intltool-merge          	\
22
	intltool-update         	\
23
	po/.intltool-merge-cache
1.1.1 by Daniel Holbach
Import upstream version 0.3.1
24
1.1.4 by Andrew Mitchell
Import upstream version 0.3.9+dfsg
25
DISTCHECK_CONFIGURE_FLAGS = --disable-schemas-install --disable-scrollkeeper
26
27
# Ignore scrollkeeper issues for now.  @#*$& scrollkeeper (from Evince)
28
distuninstallcheck_listfiles = find . -type f -print | grep -v scrollkeeper | grep -v /share/gnome/help/ | grep -v \.omf
29
30
run: $(PROGRAM)
1.1.19 by Sebastian Dröge
Import upstream version 0.7.0
31
	cd Tomboy && ./tomboy
32
33
test: all
1.1.4 by Andrew Mitchell
Import upstream version 0.3.9+dfsg
34
	$(MAKE) -C test test
35
36
.PHONY: test
37
1.1.49 by Jo Shields
Import upstream version 0.15.0
38
dist-hook:
39
	@if test -d "$(srcdir)/.git"; \
40
	then \
41
		echo Creating ChangeLog && \
42
		( cd "$(top_srcdir)" && \
43
		  echo '# Generated by Makefile. Do not edit.'; echo; \
44
		  $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
45
		&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
46
		|| ( rm -f ChangeLog.tmp ; \
47
		     echo Failed to generate ChangeLog >&2 ); \
48
	else \
49
		echo A git clone is required to generate a ChangeLog >&2; \
50
	fi
51