mirror of
https://git.yoctoproject.org/psplash
synced 2025-10-14 02:07:26 +08:00

This adds optional systemd support. When enabled, an utility called psplash-systemd is built. This tool will connect to systemd using the system bus to obtain progress information and communicate that to psplash. Once full boot progress is reported by systemd psplash psplash is closed using the quit command. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
778 B
Makefile
26 lines
778 B
Makefile
bin_PROGRAMS=psplash psplash-write
|
|
|
|
AM_CFLAGS = $(GCC_FLAGS) -D_GNU_SOURCE
|
|
|
|
psplash_SOURCES = psplash.c psplash.h psplash-fb.c psplash-fb.h \
|
|
psplash-console.c psplash-console.h \
|
|
psplash-colors.h psplash-config.h \
|
|
psplash-poky-img.h psplash-bar-img.h radeon-font.h
|
|
|
|
psplash_write_SOURCES = psplash-write.c psplash.h
|
|
|
|
if HAVE_SYSTEMD
|
|
bin_PROGRAMS += psplash-systemd
|
|
psplash_systemd_CPPFLAGS = $(SYSTEMD_CFLAGS)
|
|
psplash_systemd_LDFLAGS= $(SYSTEMD_LIBS)
|
|
psplash_systemd_SOURCES = psplash-systemd.c psplash.h
|
|
endif
|
|
|
|
EXTRA_DIST = make-image-header.sh
|
|
|
|
MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub configure depcomp install-sh ltmain.sh Makefile.in missing
|
|
|
|
snapshot:
|
|
$(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
|
|
|