mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-05 17:00:29 +01:00
Since the API has not changed at this point, this is mostly just a matter of updating Makefiles, and changing references to the library name in comments. NetworkManager cannot link to libnm due to the duplicated type/symbol names. So it links to libnm-core.la directly, which means that NetworkManager gets a separate copy of that code from libnm.so. Everything else links to libnm.
23 lines
490 B
Makefile
23 lines
490 B
Makefile
SUBDIRS = cli tui
|
|
|
|
AM_CPPFLAGS = \
|
|
-I${top_srcdir}/libnm-core \
|
|
-I${top_builddir}/libnm-core \
|
|
-I${top_srcdir}/libnm \
|
|
-I${top_builddir}/libnm \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
-DNM_VERSION_MAX_ALLOWED=NM_VERSION_NEXT_STABLE \
|
|
-DNMLOCALEDIR=\"$(datadir)/locale\"
|
|
|
|
bin_PROGRAMS = nm-online
|
|
|
|
nm_online_SOURCES = nm-online.c
|
|
nm_online_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\""nm-online"\" \
|
|
$(AM_CPPFLAGS)
|
|
|
|
nm_online_LDADD = \
|
|
$(top_builddir)/libnm/libnm.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|