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

« back to all changes in this revision

Viewing changes to targets/unity/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
 
DATADIR = $(datadir)
6
 
if HAVE_TESTING
7
 
BASE_CFLAGS+=-DTESTING
8
 
endif
9
 
 
10
 
if HAVE_LOCALINSTALL
11
 
PKGDATADIR=$(top_srcdir)/data
12
 
else
13
 
PKGDATADIR=$(datadir)/unity
14
 
endif
15
 
bin_PROGRAMS = \
16
 
  unity
17
 
 
18
 
unity_CPPFLAGS = \
19
 
  $(BASE_CFLAGS) \
20
 
  $(MAINTAINER_CFLAGS) \
21
 
  -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
22
 
  -I$(top_srcdir)/unity/ \
23
 
  -I$(top_srcdir)/unity-private/
24
 
 
25
 
unity_VALAFLAGS = \
26
 
  -C \
27
 
  --vapidir=./ \
28
 
  --vapidir=$(top_srcdir)/unity/ \
29
 
  --vapidir=$(top_srcdir)/unity-private/ \
30
 
  --vapidir=$(top_srcdir)/vapi/ \
31
 
  --thread \
32
 
  --pkg Bamf-0.2 \
33
 
  --pkg clutk-0.3 \
34
 
  --pkg clutter-1.0 \
35
 
  --pkg clutter-gtk-0.10 \
36
 
  --pkg cogl-1.0 \
37
 
  --pkg config \
38
 
  --pkg dee-1.0 \
39
 
  --pkg dbus-glib-1 \
40
 
  --pkg Dbusmenu-Glib-0.2 \
41
 
  --pkg gtk+-2.0 \
42
 
  --pkg gdk-2.0 \
43
 
  --pkg gee-1.0 \
44
 
  --pkg indicator \
45
 
  --pkg x11 \
46
 
  --pkg gtk+-2.0 \
47
 
  --pkg gee-1.0 \
48
 
  --pkg unique-1.0 \
49
 
  --pkg unity \
50
 
  --pkg unity-const \
51
 
  --pkg unity-private \
52
 
  $(MAINTAINER_VALAFLAGS)
53
 
 
54
 
unity_LDADD = \
55
 
  $(BASE_LIBS) \
56
 
  $(top_builddir)/unity/libunity.la \
57
 
  $(top_builddir)/unity-private/libunity-private.la
58
 
 
59
 
unity_VALASOURCES = \
60
 
  main.vala
61
 
 
62
 
unity_SOURCES = \
63
 
  $(unity_VALASOURCES:.vala=.c)
64
 
 
65
 
BUILT_SOURCES += unity.vala.stamp
66
 
EXTRA_DIST += unity.vala.stamp $(unity_VALASOURCES)
67
 
 
68
 
unity.vala.stamp: $(unity_VALASOURCES)
69
 
        $(AM_V_GEN) $(VALAC) $(unity_VALAFLAGS) $^
70
 
        touch unity.vala.stamp
71
 
 
72
 
CLEANFILES += \
73
 
  *.stamp \
74
 
  *.vapi \
75
 
  $(unity_VALASOURCES:.vala=.c)