~oem-solutions-group/network-manager/ubuntu.hardy.07

« back to all changes in this revision

Viewing changes to system-settings/plugins/ifupdown/Makefile.am

(merge) RELEASE 0.7~~svn20080928t225540+eni0-0ubuntu1 to ubuntu/intrepid

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
INCLUDES = \
 
3
        -I${top_srcdir}/src \
 
4
        $(NULL)
 
5
 
 
6
pkglib_LTLIBRARIES = libnm-settings-plugin-ifupdown.la
 
7
 
 
8
libnm_settings_plugin_ifupdown_la_SOURCES = \
 
9
        interface_parser.c interface_parser.h \
 
10
        nm-ifupdown-connection.c nm-ifupdown-connection.h \
 
11
        parser.c parser.h \
 
12
        plugin.c plugin.h \
 
13
        $(NULL)
 
14
 
 
15
libnm_settings_plugin_ifupdown_la_CPPFLAGS = \
 
16
        $(GLIB_CFLAGS) \
 
17
        $(GMODULE_CFLAGS) \
 
18
        $(DBUS_CFLAGS) \
 
19
        -DG_DISABLE_DEPRECATED \
 
20
        -I${top_srcdir}/system-settings/src \
 
21
        -I$(top_srcdir)/include \
 
22
        -I$(top_srcdir)/libnm-glib \
 
23
        -I$(top_srcdir)/libnm-util \
 
24
        -DSYSCONFDIR=\"$(sysconfdir)\"
 
25
 
 
26
libnm_settings_plugin_ifupdown_la_LDFLAGS = -module -avoid-version
 
27
libnm_settings_plugin_ifupdown_la_LIBADD = \
 
28
        $(GLIB_LIBS) \
 
29
        $(GMODULE_LIBS) \
 
30
        $(top_builddir)/libnm-util/libnm-util.la
 
31