~codygarver/+junk/gnome-builder

« back to all changes in this revision

Viewing changes to plugins/command-bar/Makefile.am

  • Committer: Cody Garver
  • Date: 2015-11-21 00:50:38 UTC
  • Revision ID: cody@elementary.io-20151121005038-8wygis63zt0ljqlz
Import https://github.com/chergert/gnome-builder 06e3158922a02a27f4abca250d70aa7b2970e06a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if ENABLE_COMMAND_BAR_PLUGIN
 
2
 
 
3
DISTCLEANFILES =
 
4
BUILT_SOURCES =
 
5
CLEANFILES =
 
6
EXTRA_DIST = $(plugin_DATA)
 
7
 
 
8
plugindir = $(libdir)/gnome-builder/plugins
 
9
plugin_LTLIBRARIES = libcommand-bar.la
 
10
dist_plugin_DATA = command-bar.plugin
 
11
 
 
12
libcommand_bar_la_SOURCES = \
 
13
        gb-command-bar-resources.c \
 
14
        gb-command-bar-resources.h \
 
15
        gb-command-bar.c \
 
16
        gb-command-bar.h \
 
17
        gb-command-gaction-provider.c \
 
18
        gb-command-gaction-provider.h \
 
19
        gb-command-gaction.c \
 
20
        gb-command-gaction.h \
 
21
        gb-command-manager.c \
 
22
        gb-command-manager.h \
 
23
        gb-command-provider.c \
 
24
        gb-command-provider.h \
 
25
        gb-command-result.c \
 
26
        gb-command-result.h \
 
27
        gb-command-vim-provider.c \
 
28
        gb-command-vim-provider.h \
 
29
        gb-command-vim.c \
 
30
        gb-command-vim.h \
 
31
        gb-command.c \
 
32
        gb-command.h \
 
33
        gb-vim.c \
 
34
        gb-vim.h \
 
35
        $(NULL)
 
36
 
 
37
libcommand_bar_la_CFLAGS = \
 
38
        -I$(top_srcdir)/libide \
 
39
        -I$(top_srcdir)/src/app \
 
40
        -I$(top_srcdir)/src/workspace \
 
41
        -I$(top_srcdir)/src/workbench \
 
42
        -I$(top_srcdir)/src/views \
 
43
        -I$(top_srcdir)/src/documents \
 
44
        -I$(top_srcdir)/src/editor \
 
45
        -I$(top_srcdir)/src/util \
 
46
        -I$(top_srcdir)/src \
 
47
        -I$(top_srcdir)/contrib/gd \
 
48
        -I$(top_srcdir)/contrib/nautilus \
 
49
        $(BUILDER_CFLAGS) \
 
50
        $(DEBUG_CFLAGS) \
 
51
        $(OPTIMIZE_CFLAGS) \
 
52
        $(NULL)
 
53
 
 
54
libcommand_bar_la_LIBADD = \
 
55
        $(BUILDER_LIBS) \
 
56
        $(NULL)
 
57
 
 
58
libcommand_bar_la_LDFLAGS = \
 
59
        $(OPTIMIZE_LDFLAGS) \
 
60
        -avoid-version \
 
61
        -module \
 
62
        $(NULL)
 
63
 
 
64
glib_resources_c = gb-command-bar-resources.c
 
65
glib_resources_h = gb-command-bar-resources.h
 
66
glib_resources_xml = gb-command-bar.gresource.xml
 
67
glib_resources_namespace = gb_command_bar
 
68
include $(top_srcdir)/build/autotools/Makefile.am.gresources
 
69
 
 
70
include $(top_srcdir)/plugins/Makefile.plugin
 
71
 
 
72
endif
 
73
 
 
74
-include $(top_srcdir)/git.mk