1
SUBDIRS = 		\
2
	build 		\
3
	data 		\
4
	lib 		\
5
	docs		\
6
    help        \
7
	icons		\
8
	tools		\
9
	po			\
10
	src			\
11
	tests
12
13
schemadir = $(sysconfdir)/gconf/schemas
14
schema_in_files = f-spot.schemas.in
15
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
16
@INTLTOOL_SCHEMAS_RULE@
17
18
CLEANFILES =			\
19
	$(schema_DATA)		\
20
	intltool-extract	\
21
	intltool-update		\
22
	intltool-merge
23
24
EXTRA_DIST =			\
25
	COPYING				\
26
	MAINTAINERS			\
27
	intltool-extract.in	\
28
	intltool-merge.in	\
29
	intltool-update.in	\
30
	Makefile.include	\
31
	gnome-doc-utils.make	\
32
	icon-theme-installer	\
33
	$(schema_in_files)
34
35
DISTCLEANFILES = \
36
	intltool-extract        \
37
	intltool-merge          \
38
	intltool-update         \
39
	gnome-doc-utils.make
40
41
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
42
43
if GCONF_SCHEMAS_INSTALL
44
install-data-local:
45
	-GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA)
46
else
47
install-data-local:
48
endif
49
50
csharp:
51
	@pushd .; \
52
	echo ""; \
53
	echo "Starting csharp with Gtk#, Hyena, FSpot, etc referenced"; \
54
	csharp -lib:bin/ -pkg:glib-sharp-2.0 -pkg:gtk-sharp-2.0 -pkg:gconf-sharp-2.0 -pkg:mono-addins -r:lib/gio-sharp/gio/gio-sharp.dll -r:lib/unique-sharp/unique/unique-sharp.dll -reference:bin/f-spot.exe $(addprefix "-reference:", $(wildcard bin/*.dll)); \
55
	popd;
56
57
run:
58
	@pushd bin/; \
59
	../src/Clients/MainApp/f-spot --uninstalled --debug; \
60
	popd;
61
62
63
test:
64
	@pushd tests; \
65
	make test \
66
	popd;