mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 09:30:16 +01:00
Shared headers are all project-wide and internal API. Currently we have the following: General purpose: - shared/gsystem-local-alloc.h: header-only, allocation macros - shared/nm-dbus-compat.h: header-only, D-Bus related defines - shared/nm-glib.h: header-only, glib compatibility defines - shared/nm-macros-internal.h: header-only, utils - shared/nm-shared-utils.[hc]: source and header, utils - shared/nm-test*.[hc]: source and header, libnm testing utils Special to NetworkManager repository: - shared/nm-version-macros.h.in: header-only, version macros - shared/nm-default.h: header-only, default-include Now we add "shared/nm-common-macros.h" which is header-only, but non general purpose. I am running low on good names, considering all the shared/core/macros utils headers. Still, I think "nm-common-macros.h" is appropriate.
15 lines
342 B
Makefile
15 lines
342 B
Makefile
EXTRA_DIST = \
|
|
gsystem-local-alloc.h \
|
|
nm-common-macros.h \
|
|
nm-dbus-compat.h \
|
|
nm-default.h \
|
|
nm-glib.h \
|
|
nm-macros-internal.h \
|
|
nm-shared-utils.c \
|
|
nm-shared-utils.h \
|
|
nm-test-libnm-utils.h \
|
|
nm-test-utils.h \
|
|
nm-test-utils-impl.c \
|
|
nm-version-macros.h.in
|
|
|
|
CLEANFILES=nm-version.h
|