mirror of
https://github.com/clearlinux/clr-debug-info.git
synced 2026-09-03 12:21:49 +00:00
Adding two --with-* configure options for the systemd pkgconfig-defined variables gives opportunity for distcheck to succeed; the variables use hardcoded paths to /usr/lib/systemd/... without a PREFIX, so the paths need to be relocated to $dc_install_base, a variable distcheck uses for the normal variables that begin with PREFIX.
24 lines
767 B
Makefile
24 lines
767 B
Makefile
EXTRA_DIST = COPYING clr_debug_fuse.service clr_debug_daemon.service debuginfo.conf
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) \
|
|
--with-systemdtmpfilesdir=$$dc_install_base/$(tmpfilesdir)
|
|
|
|
bin_PROGRAMS = clr_debug_fuse clr_debug_daemon clr_debug_prepare
|
|
|
|
clr_debug_fuse_SOURCES = src/fuse.c src/client.c
|
|
|
|
clr_debug_daemon_SOURCES = src/server.c
|
|
|
|
clr_debug_prepare_SOURCES = src/prepare.c
|
|
|
|
|
|
AM_CPPFLAGS = $(AM_CFLAGS) $(glib_CFLAGS) ${curl_CFLAGS} ${fuse_CFLAGS}
|
|
clr_debug_fuse_LDADD = ${fuse_LIBS} $(glib_LIBS)
|
|
clr_debug_daemon_LDADD = $(glib_LIBS) ${curl_LIBS}
|
|
clr_debug_prepare_LDADD = $(glib_LIBS)
|
|
|
|
systemdsystemunit_DATA = clr_debug_fuse.service clr_debug_daemon.service
|
|
|
|
tmpfiles_DATA = debuginfo.conf
|