forked from f-spot/f-spot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
62 lines (52 loc) · 1.13 KB
/
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
SUBDIRS = \
build \
data \
lib \
external \
docs \
help \
icons \
tools \
po \
src \
tests
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
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update \
gnome-doc-utils.make
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
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 -reference:bin/f-spot.exe $(addprefix "-reference:", $(wildcard bin/*.dll)); \
popd;
run:
@pushd bin/; \
../src/Clients/FSpot.Gtk/f-spot --uninstalled --debug; \
popd;
copy_bin:
mkdir -p $(DESTDIR)/$(libdir)/f-spot
cp -r bin/* $(DESTDIR)/$(libdir)/f-spot/
test:
@pushd tests; \
make test; \
popd;
include $(top_srcdir)/build/xbuild.include