9e02e880cd15eaf6a73125b4749be41e2d23905e
[guestfs-browser.git] / Makefile.am
1 # Guestfs Browser.
2 # Copyright (C) 2010 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with this program; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 ACLOCAL_AMFLAGS = -I m4
19
20 EXTRA_DIST = HACKING Throbber.png Throbber.gif
21
22 CLEANFILES = *.cmi *.cmo *.cmx *.o guestfs-browser throbber.ml
23
24 SOURCES = \
25         main.ml \
26         slave.mli \
27         slave.ml \
28         throbber.ml \
29         utils.mli \
30         utils.ml
31
32 OBJECTS = \
33         main.cmx \
34         slave.cmx \
35         throbber.cmx \
36         utils.cmx
37
38 bin_SCRIPTS = guestfs-browser
39
40 OCAMLOPTFLAGS = \
41         -warn-error A \
42         -thread \
43         -package libvirt,guestfs,lablgtk2,extlib,xml-light,threads
44
45 guestfs-browser: $(OBJECTS)
46         ocamlfind ocamlopt $(OCAMLOPTFLAGS) \
47           -predicates init,threads \
48           -linkpkg gtkThread.cmx \
49           $^ -o $@
50
51 throbber.ml: Throbber.png Throbber.gif
52         gdk_pixbuf_mlsource --build-list \
53           static Throbber.png \
54           animation Throbber.gif \
55           > $@-t && mv $@-t $@