mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 11:00:09 +01:00
This functionality is (mostly) obsoleted by the newer GLIB_VERSION_MIN_REQUIRED and GLIB_VERSION_MAX_ALLOWED defines. With this, your build doesn't all of a sudden blow up if we deprecate something in GLib - you have to explicitly opt-in to the newer version. G_DISABLE_DEPRECATED does still apply for macros and things that can't take __attribute__((deprecated)), but it's not really worth the pain and cargo culting around just for that.
39 lines
652 B
Makefile
39 lines
652 B
Makefile
bin_PROGRAMS = \
|
|
nmcli
|
|
|
|
INCLUDES = \
|
|
-I${top_srcdir} \
|
|
-I${top_srcdir}/include \
|
|
-I${top_builddir}/include \
|
|
-I${top_srcdir}/libnm-util \
|
|
-I${top_builddir}/libnm-util \
|
|
-I${top_srcdir}/libnm-glib
|
|
|
|
nmcli_SOURCES = \
|
|
common.c \
|
|
common.h \
|
|
connections.c \
|
|
connections.h \
|
|
devices.c \
|
|
devices.h \
|
|
network-manager.c \
|
|
network-manager.h \
|
|
settings.c \
|
|
settings.h \
|
|
nmcli.c \
|
|
nmcli.h \
|
|
utils.c \
|
|
utils.h
|
|
|
|
nmcli_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
-DNMCLI_LOCALEDIR=\"$(datadir)/locale\"
|
|
|
|
nmcli_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la
|
|
|
|
|