File: Makefile.am

package info (click to toggle)
f-spot 0.8.2-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,376 kB
  • sloc: cs: 138,718; sh: 16,964; makefile: 2,321; xml: 783; ansic: 721
file content (66 lines) | stat: -rw-r--r-- 1,423 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
59
60
61
62
63
64
65
66
SUBDIRS = 		\
	build 		\
	data 		\
	lib 		\
	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	\
	$(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

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;


test:
	@pushd tests; \
	make test \
	popd;