mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-04 07:08:17 +02:00
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
include $(GLIB_MAKEFILE)
|
|
|
|
include $(top_srcdir)/nm.mk
|
|
|
|
@GNOME_CODE_COVERAGE_RULES@
|
|
|
|
AM_CPPFLAGS = \
|
|
-I${top_srcdir}/src \
|
|
-I${top_builddir}/src \
|
|
-I${top_srcdir}/src/devices \
|
|
-I${top_srcdir}/src/platform \
|
|
-I${top_builddir}/introspection \
|
|
-I${top_srcdir}/shared \
|
|
-I$(top_builddir)/shared \
|
|
-I${top_builddir}/libnm-core \
|
|
-I${top_srcdir}/libnm-core \
|
|
-DG_LOG_DOMAIN=\""NetworkManager"\" \
|
|
-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_INSIDE_DAEMON \
|
|
$(GUDEV_CFLAGS)
|
|
|
|
pkglib_LTLIBRARIES = libnm-device-plugin-adsl.la
|
|
|
|
libnm_device_plugin_adsl_la_SOURCES = \
|
|
nm-atm-manager.c \
|
|
nm-device-adsl.c \
|
|
nm-device-adsl.h
|
|
|
|
libnm_device_plugin_adsl_la_LDFLAGS = \
|
|
-module -avoid-version \
|
|
-Wl,--version-script="$(top_srcdir)/linker-script-devices.ver"
|
|
|
|
libnm_device_plugin_adsl_la_LIBADD = \
|
|
$(top_builddir)/introspection/libnmdbus.la \
|
|
$(GUDEV_LIBS)
|
|
|
|
check-local:
|
|
$(top_srcdir)/tools/check-exports.sh $(builddir)/.libs/libnm-device-plugin-adsl.so "$(top_srcdir)/linker-script-devices.ver"
|
|
$(call check_so_symbols,$(builddir)/.libs/libnm-device-plugin-adsl.so)
|