Project:
F-Spot
Code Location:
git://git.gnome.org/f-spotmaster
Makefile.am
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
SUBDIRS = \ build \ data \ lib \ external \ docs \ help \ icons \ tools \ po \ src \ tests schemadir = $(sysconfdir)/gconf/schemas schema_in_files = f-spot.schemas.in schema_DATA = $(schema_in_files:.schemas.in=.schemas) @INTLTOOL_SCHEMAS_RULE@ CLEANFILES = \ $(schema_DATA) \ intltool-extract \ intltool-update \ intltool-merge EXTRA_DIST = \ COPYING \ MAINTAINERS \ intltool-extract.in \ intltool-merge.in \ intltool-update.in \ Makefile.include \ gnome-doc-utils.make \ icon-theme-installer \ F-Spot.sln \ $(schema_in_files) DISTCLEANFILES = \ intltool-extract \ intltool-merge \ intltool-update \ gnome-doc-utils.make DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper if GCONF_SCHEMAS_INSTALL install-data-local: -GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA) else install-data-local: endif all: sln_build csharp: @pushd .; \ echo ""; \ echo "Starting csharp with Gtk#, Hyena, FSpot, etc referenced"; \ 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)); \ popd; run: @pushd bin/; \ ../src/Clients/MainApp/f-spot --uninstalled --debug; \ popd; install-data-local: copy_bin copy_bin: mkdir -p $(libdir)/f-spot cp -r bin/* $(libdir)/f-spot/ test: @pushd tests; \ make test \ popd; include $(top_srcdir)/build/xbuild.include
