mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-20 02:08:10 +02:00
Up to now, the "include" directory contained (only) header files that were used project-wide by libs, core, clients, et al. Since the directory now also contains a non-header file, the "include" name is misleading. Instead of adding yet another directory that is project-wide, with non-header-only content, rename the "include" directory to "shared".
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
include $(GLIB_MAKEFILE)
|
|
|
|
@GNOME_CODE_COVERAGE_RULES@
|
|
|
|
if ENABLE_TESTS
|
|
SUBDIRS=. tests
|
|
endif
|
|
|
|
AM_CPPFLAGS = \
|
|
-I${top_srcdir}/src \
|
|
-I${top_builddir}/src \
|
|
-I${top_srcdir}/src/devices \
|
|
-I${top_srcdir}/src/settings \
|
|
-I${top_srcdir}/src/platform \
|
|
-I${top_srcdir}/src/supplicant-manager \
|
|
-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-wifi"\" \
|
|
-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_INSIDE_DAEMON \
|
|
-DNM_VERSION_MAX_ALLOWED=NM_VERSION_NEXT_STABLE \
|
|
$(GLIB_CFLAGS)
|
|
|
|
pkglib_LTLIBRARIES = libnm-device-plugin-wifi.la
|
|
|
|
libnm_device_plugin_wifi_la_SOURCES = \
|
|
nm-wifi-factory.c \
|
|
nm-device-wifi.c \
|
|
nm-device-wifi.h \
|
|
nm-wifi-ap.c \
|
|
nm-wifi-ap.h \
|
|
nm-wifi-ap-utils.c \
|
|
nm-wifi-ap-utils.h \
|
|
nm-device-olpc-mesh.c \
|
|
nm-device-olpc-mesh.h
|
|
|
|
SYMBOL_VIS_FILE=$(srcdir)/exports.ver
|
|
|
|
libnm_device_plugin_wifi_la_LDFLAGS = \
|
|
-module -avoid-version \
|
|
-Wl,--version-script=$(SYMBOL_VIS_FILE)
|
|
|
|
libnm_device_plugin_wifi_la_LIBADD = \
|
|
$(top_builddir)/introspection/libnmdbus.la \
|
|
$(GLIB_LIBS) \
|
|
$(GUDEV_LIBS)
|
|
|
|
EXTRA_DIST = $(SYMBOL_VIS_FILE)
|
|
|
|
if ENABLE_TESTS
|
|
|
|
check-local:
|
|
$(top_srcdir)/tools/check-exports.sh $(builddir)/.libs/libnm-device-plugin-wifi.so $(SYMBOL_VIS_FILE)
|
|
|
|
endif
|
|
|