~gala-dev/gala/windowswitcher-fade-opacity

« back to all changes in this revision

Viewing changes to plugins/template/Makefile.am

  • Committer: RabbitBot
  • Author(s): Tom Beckmann, Rico Tzschichholz, Cody Garver
  • Date: 2014-04-06 18:30:23 UTC
  • mfrom: (368.1.21 plugins)
  • Revision ID: rabbitbot-20140406183023-0v1juolllz5u2fht
Add plugin support, move zoom functionality into a plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/Makefile.common
 
2
 
 
3
VAPIDIR = $(top_srcdir)/vapi
 
4
 
 
5
BUILT_SOURCES = libgala_template_la_vala.stamp
 
6
 
 
7
libgala_template_la_LTLIBRARIES = libgala-template.la
 
8
 
 
9
libgala_template_ladir = $(pkglibdir)/plugins
 
10
 
 
11
libgala_template_la_LDFLAGS = \
 
12
        $(PLUGIN_LDFLAGS) \
 
13
        $(GALA_CORE_LDFLAGS) \
 
14
        $(top_builddir)/lib/libgala.la \
 
15
        $(NULL)
 
16
 
 
17
libgala_template_la_CFLAGS = \
 
18
        $(GALA_CORE_CFLAGS) \
 
19
        -include config.h \
 
20
        -w \
 
21
        -I$(top_builddir)/lib \
 
22
        $(NULL)
 
23
 
 
24
libgala_template_la_VALAFLAGS = \
 
25
        $(GALA_CORE_VALAFLAGS) \
 
26
        $(top_builddir)/lib/gala.vapi \
 
27
        --vapidir $(VAPIDIR) \
 
28
        $(VAPIDIR)/config.vapi \
 
29
        $(NULL)
 
30
 
 
31
libgala_template_la_LIBADD = \
 
32
        $(GALA_CORE_LIBS) \
 
33
        $(NULL)
 
34
 
 
35
libgala_template_la_VALASOURCES = \
 
36
        Main.vala \
 
37
        $(NULL)
 
38
 
 
39
nodist_libgala_template_la_SOURCES = \
 
40
        $(BUILT_SOURCES) \
 
41
        $(libgala_template_la_VALASOURCES:.vala=.c) \
 
42
        $(NULL)
 
43
 
 
44
libgala_template_la_vala.stamp: $(libgala_template_la_VALASOURCES)
 
45
        $(AM_V_VALA)$(VALAC) \
 
46
                $(libgala_template_la_VALAFLAGS) \
 
47
                -C \
 
48
                $(filter %.vala %.c,$^)
 
49
        $(AM_V_at)touch $@
 
50
 
 
51
CLEANFILES = \
 
52
        $(nodist_libgala_template_la_SOURCES) \
 
53
        $(NULL)
 
54
 
 
55
EXTRA_DIST = \
 
56
        $(libgala_template_la_VALASOURCES) \
 
57
        $(NULL)
 
58