~canonical-dx-team/unity/unity.fix-ql-losing-focus

« back to all changes in this revision

Viewing changes to targets/mutter/Makefile.am

  • Committer: Neil Jagdish Patel
  • Date: 2010-11-11 18:51:08 UTC
  • mfrom: (572.1.58 unity-3.0)
  • Revision ID: neil.patel@canonical.com-20101111185108-71923a90txzvxbit
[merge] Unity 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BUILT_SOURCES =
2
 
CLEANFILES =
3
 
EXTRA_DIST =
4
 
 
5
 
if ENABLE_MUTTER
6
 
 
7
 
if HAVE_TESTING
8
 
BASE_CFLAGS+=-DTESTING
9
 
endif
10
 
 
11
 
if HAVE_LOCALINSTALL
12
 
mutterlibdir = /tmp/mutter-plugin/
13
 
else
14
 
mutterlibdir = $(MUTTER_PLUGIN_DIR)
15
 
endif
16
 
 
17
 
mutterlib_LTLIBRARIES = \
18
 
  libunity-mutter.la
19
 
 
20
 
# unity-quicklauncher static lib
21
 
libunity_mutter_la_CPPFLAGS = \
22
 
  -I$(top_srcdir)/unity \
23
 
  -I$(top_srcdir)/unity-private \
24
 
  -I$(top_srcdir)/src \
25
 
  -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
26
 
  $(BASE_CFLAGS) \
27
 
  $(MUTTER_CFLAGS) \
28
 
  $(MAINTAINER_CFLAGS)
29
 
 
30
 
libunity_mutter_la_VALAFLAGS = \
31
 
  -C \
32
 
  -H unity-mutter.h -d . \
33
 
  --library unity-mutter \
34
 
  --vapidir=$(top_srcdir)/vapi/ \
35
 
  --vapidir=$(top_srcdir)/src/ \
36
 
  --vapidir=$(top_srcdir)/unity \
37
 
  --vapidir=$(top_srcdir)/unity-private \
38
 
  --pkg Bamf-0.2 \
39
 
  --pkg clutter-1.0 \
40
 
  --pkg clutter-gtk-0.10 \
41
 
  --pkg clutk-0.3 \
42
 
  --pkg dbus-glib-1 \
43
 
  --pkg Dbusmenu-Glib-0.2 \
44
 
  --pkg dee-1.0 \
45
 
  --pkg gtk+-2.0 \
46
 
  --pkg gdk-x11-2.0 \
47
 
  --pkg gee-1.0 \
48
 
  --pkg indicator \
49
 
  --pkg mutter-2.28 \
50
 
  --pkg unique-1.0 \
51
 
  --pkg x11 \
52
 
  --pkg unity-const \
53
 
  --pkg unity \
54
 
  --pkg unity-private \
55
 
  --pkg gconf-2.0 \
56
 
  $(MAINTAINER_VALAFLAGS)
57
 
 
58
 
libunity_mutter_la_LIBADD = \
59
 
  $(top_builddir)/unity/libunity.la \
60
 
  $(top_builddir)/unity-private/libunity-private.la \
61
 
  $(BASE_LIBS) \
62
 
  $(MUTTER_LIBS)
63
 
 
64
 
libunity_mutter_la_SOURCES = \
65
 
  main.c \
66
 
  mutter-plugins.h \
67
 
  unity-mutter.h \
68
 
  $(libunity_mutter_la_VALASOURCES:.vala=.c)
69
 
 
70
 
libunity_mutter_la_VALASOURCES = \
71
 
  expose-manager.vala \
72
 
  spaces-manager.vala \
73
 
  plugin.vala \
74
 
  maximus.vala \
75
 
  window-management.vala
76
 
 
77
 
libunity_mutter_la_APIFILES = \
78
 
  unity-mutter.h \
79
 
  unity-mutter.vapi
80
 
 
81
 
BUILT_SOURCES += libunity_mutter_la.vala.stamp
82
 
EXTRA_DIST += \
83
 
  $(BUILT_SOURCES) \
84
 
  $(libunity_mutter_la_APIFILES) \
85
 
  $(libunity_mutter_la_VALASOURCES)
86
 
 
87
 
$(BUILT_SOURCES) $(libunity_mutter_la_APIFILES): $(libunity_mutter_la_VALASOURCES)
88
 
        $(AM_V_GEN) $(VALAC) $(libunity_mutter_la_VALAFLAGS) $^
89
 
        touch libunity_mutter_la.vala.stamp
90
 
 
91
 
CLEANFILES += \
92
 
  *.stamp \
93
 
  unity-mutter.vapi \
94
 
  $(libunity_mutter_la_VALASOURCES:.vala=.c) \
95
 
  $(libunity_mutter_la_APIFILES)
96
 
 
97
 
else
98
 
endif