~khurshid-alam/unity-control-center/use-usd-schemas

« back to all changes in this revision

Viewing changes to panels/network/connection-editor/Makefile.am

  • Committer: Sebastien Bacher
  • Author(s): Khurshid Alam
  • Date: 2019-05-17 07:34:33 UTC
  • mfrom: (12920.1.1 unity-control-center)
  • Revision ID: seb128@ubuntu.com-20190517073433-ch2kybdhhzpkmvq4
Network: Port to libnm 1.2 (lp: #1744619)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
noinst_LTLIBRARIES = libconnection-editor.la
 
2
 
 
3
BUILT_SOURCES =                                 \
 
4
        net-connection-editor-resources.c       \
 
5
        net-connection-editor-resources.h
 
6
 
 
7
libconnection_editor_la_SOURCES =               \
 
8
        $(BUILT_SOURCES)                        \
 
9
        net-connection-editor.h                 \
 
10
        net-connection-editor.c                 \
 
11
        ce-page.h                               \
 
12
        ce-page.c                               \
 
13
        ce-page-details.h                       \
 
14
        ce-page-details.c                       \
 
15
        ce-page-wifi.h                          \
 
16
        ce-page-wifi.c                          \
 
17
        ce-page-ip4.h                           \
 
18
        ce-page-ip4.c                           \
 
19
        ce-page-ip6.h                           \
 
20
        ce-page-ip6.c                           \
 
21
        ce-page-security.h                      \
 
22
        ce-page-security.c                      \
 
23
        ce-page-ethernet.h                      \
 
24
        ce-page-ethernet.c                      \
 
25
        ce-page-8021x-security.h                \
 
26
        ce-page-8021x-security.c                \
 
27
        ce-page-vpn.h                           \
 
28
        ce-page-vpn.c                           \
 
29
        vpn-helpers.h                           \
 
30
        vpn-helpers.c                           \
 
31
        ui-helpers.h                            \
 
32
        ui-helpers.c
 
33
 
 
34
libconnection_editor_la_CPPFLAGS =              \
 
35
        $(PANEL_CFLAGS)                         \
 
36
        -I$(srcdir)/../wireless-security        \
 
37
        $(NETWORK_PANEL_CFLAGS)                 \
 
38
        $(NETWORK_MANAGER_CFLAGS)
 
39
 
 
40
libconnection_editor_la_LIBADD =                \
 
41
        $(builddir)/../wireless-security/libwireless-security.la \
 
42
        $(NETWORK_PANEL_LIBS)                   \
 
43
        $(NETWORK_MANAGER_LIBS)
 
44
 
 
45
resource_files = $(shell glib-compile-resources --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/connection-editor.gresource.xml)
 
46
net-connection-editor-resources.c: connection-editor.gresource.xml $(resource_files)
 
47
        $(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-source --c-name net_connection_editor $<
 
48
net-connection-editor-resources.h: connection-editor.gresource.xml $(resource_files)
 
49
        $(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-header --c-name net_connection_editor $<
 
50
 
 
51
EXTRA_DIST = \
 
52
        $(resource_files) connection-editor.gresource.xml
 
53
 
 
54
-include $(top_srcdir)/git.mk