mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-20 08:00:18 -04:00
For example, add $(AM_CFLAGS) to mumble_CFLAGS. Since $(WARN_CFLAGS) is only added to $(AM_CFLAGS), this fixes the lack of inclusion of the compiler warning flags in the compilation of half of flatpak. Note that $(AM_*) variables are only used by automake if a more specific (per-target) special variable is not defined instead. So if you define mumble_CFLAGS, AM_CFLAGS will not be used for that target unless explicitly included in mumble_CFLAGS. See https://www.gnu.org/software/automake/manual/html_node/Flag-Variables-Ordering.html. Do the same for $(AM_LIBADD), $(AM_LDFLAGS), etc. These are not currently defined, but it’s good practice to include them in mumble_LIBADD (etc.) just in case they’re defined in future. Hopefully their inclusions will be cargo-culted to any new targets which are added, retaining full coverage of the code base. Signed-off-by: Philip Withnall <withnall@endlessm.com>
17 lines
627 B
PHP
17 lines
627 B
PHP
libexec_PROGRAMS += \
|
|
flatpak-session-helper \
|
|
$(NULL)
|
|
|
|
service_in_files += session-helper/flatpak-session-helper.service.in
|
|
systemduserunit_DATA += session-helper/flatpak-session-helper.service
|
|
|
|
service_in_files += session-helper/org.freedesktop.Flatpak.service.in
|
|
dbus_service_DATA += session-helper/org.freedesktop.Flatpak.service
|
|
|
|
flatpak_session_helper_SOURCES = \
|
|
session-helper/flatpak-session-helper.c \
|
|
$(NULL)
|
|
|
|
flatpak_session_helper_LDADD = $(AM_LDADD) $(BASE_LIBS) libflatpak-common.la
|
|
flatpak_session_helper_CFLAGS = $(AM_CFLAGS) $(BASE_CFLAGS) $(SOUP_CFLAGS) $(OSTREE_CFLAGS) $(GSYSTEM_CFLAGS) $(JSON_CFLAGS)
|