~ubuntu-branches/ubuntu/precise/network-manager/precise

« back to all changes in this revision

Viewing changes to examples/C/qt/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-02-09 16:45:41 UTC
  • mfrom: (1.1.53)
  • Revision ID: package-import@ubuntu.com-20120209164541-4h90zknlsfdb7x35
Tags: 0.9.2.0+git201202091925.c721477-0ubuntu1
* upstream snapshot 2012-02-09 19:25:59 (GMT)
  + c721477d11d4fe144111d6d2eec8f93f2e9186c9
* debian/patches/avoid-periodic-disk-wakeups.patch: refreshed.
* debian/patches/nl3-default-ip6-route.patch: refreshed.
* debian/libnm-glib4.symbols: add symbols:
  + nm_active_connection_get_master@Base
  + nm_client_new_async@Base
  + nm_client_new_finish@Base
  + nm_remote_settings_new_async@Base
  + nm_remote_settings_new_finish@Base
  + nm_device_get_state_reason@Base
* debian/libnm-util2.symbols: add symbols:
  + nm_setting_802_1x_get_pac_file@Base
  + nm_setting_infiniband_get_transport_mode@Base

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
noinst_PROGRAMS = \
9
9
        add-connection-wired \
10
10
        list-connections \
11
 
        change-ipv4-addresses
 
11
        change-ipv4-addresses \
 
12
        monitor-nm-running
12
13
 
13
14
add_connection_wired_SOURCES = add-connection-wired.cpp
14
15
add_connection_wired_LDADD = \
25
26
        $(DBUS_LIBS) \
26
27
        $(QT_LIBS)
27
28
 
 
29
monitor_nm_running_SOURCES = monitor-nm-running.cpp
 
30
monitor_nm_running_LDADD = \
 
31
        $(DBUS_LIBS) \
 
32
        $(QT_LIBS)
 
33
 
 
34
monitor-nm-running.moc: monitor-nm-running.cpp
 
35
        $(AM_V_GEN) $(MOC) -i $< -o $@
 
36
 
 
37
BUILT_SOURCES = \
 
38
        monitor-nm-running.moc
 
39
 
28
40
EXTRA_DIST = \
29
41
        add-connection-wired.cpp \
30
42
        list-connections.cpp \
31
 
        change-ipv4-addresses.cpp
 
43
        change-ipv4-addresses.cpp \
 
44
        monitor-nm-running.cpp
 
45
 
 
46
CLEANFILES = $(BUILT_SOURCES)
32
47