diff options
Diffstat (limited to 'src/libsystemd-shared')
-rw-r--r-- | src/libsystemd-shared/src/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libsystemd-shared/src/Makefile b/src/libsystemd-shared/src/Makefile index 5453bec630..292f6a27a6 100644 --- a/src/libsystemd-shared/src/Makefile +++ b/src/libsystemd-shared/src/Makefile @@ -26,7 +26,7 @@ include $(topsrcdir)/build-aux/Makefile.head.mk noinst_LTLIBRARIES += \ libsystemd-shared.la -libsystemd-shared_la_SOURCES = \ +libsystemd_shared_la_SOURCES = \ src/shared/output-mode.h \ src/shared/output-mode.c \ src/shared/gpt.h \ @@ -114,28 +114,28 @@ libsystemd-shared_la_SOURCES = \ src/shared/fdset.h ifneq ($(HAVE_UTMP),) -libsystemd-shared_la_SOURCES += \ +libsystemd_shared_la_SOURCES += \ src/shared/utmp-wtmp.c endif # HAVE_UTMP ifneq ($(HAVE_SECCOMP),) -libsystemd-shared_la_SOURCES += \ +libsystemd_shared_la_SOURCES += \ src/shared/seccomp-util.h \ src/shared/seccomp-util.c endif # HAVE_SECCOMP ifneq ($(HAVE_ACL),) -libsystemd-shared_la_SOURCES += \ +libsystemd_shared_la_SOURCES += \ src/shared/acl-util.c \ src/shared/acl-util.h endif # HAVE_ACL -libsystemd-shared_la_CFLAGS = \ +libsystemd_shared_la_CFLAGS = \ $(ACL_CFLAGS) \ $(LIBIDN_CFLAGS) \ $(SECCOMP_CFLAGS) -libsystemd-shared_la_LIBADD = \ +libsystemd_shared_la_LIBADD = \ libsystemd-internal.la \ libsystemd-basic.la \ libsystemd-journal-internal.la \ @@ -149,14 +149,14 @@ rootlibexec_LTLIBRARIES += \ libsystemd_shared_la_SOURCES = \ $(libsystemd_basic_la_SOURCES) \ - $(libsystemd-shared_la_SOURCES) \ + $(libsystemd_shared_la_SOURCES) \ $(libsystemd_internal_la_SOURCES) \ $(libsystemd_journal_internal_la_SOURCES) \ $(libudev_internal_la_SOURCES) libsystemd_shared_la_CFLAGS = \ $(libsystemd_basic_la_CFLAGS) \ - $(libsystemd-shared_la_CFLAGS) \ + $(libsystemd_shared_la_CFLAGS) \ $(libsystemd_internal_la_CFLAGS) \ $(libsystemd_journal_internal_la_CFLAGS) \ $(libudev_internal_la_CFLAGS) \ @@ -165,7 +165,7 @@ libsystemd_shared_la_CFLAGS = \ $(SECCOMP_CFLAGS) \ -fvisibility=default -# We can't use libsystemd-shared_la_LIBADD here because it would +# We can't use libsystemd_shared_la_LIBADD here because it would # pull in libsystemd*-internal.la libsystemd_shared_la_LIBADD = \ $(libsystemd_basic_la_LIBADD) \ |