mirror of
https://github.com/systemd/systemd.git
synced 2026-07-17 04:50:47 +00:00
These are mostly dummy man pages, without real content, some even outdated. None of these tools are part of any offered public interface, and they should not pretend to be by offering a man page.
23 lines
555 B
Makefile
23 lines
555 B
Makefile
include $(top_srcdir)/Makefile.am.inc
|
|
|
|
libexec_PROGRAMS = \
|
|
create_floppy_devices
|
|
|
|
create_floppy_devices_SOURCES = \
|
|
create_floppy_devices.c \
|
|
../../libudev/libudev.h \
|
|
../../libudev/libudev-private.h \
|
|
../../libudev/libudev.c \
|
|
../../libudev/libudev-list.c \
|
|
../../libudev/libudev-util.c \
|
|
../../libudev/libudev-util-private.c \
|
|
../../libudev/libudev-device.c \
|
|
../../libudev/libudev-enumerate.c
|
|
|
|
if WITH_SELINUX
|
|
create_floppy_devices_SOURCES += \
|
|
../../libudev/libudev-selinux-private.c
|
|
create_floppy_devices_LDADD = \
|
|
$(SELINUX_LIBS)
|
|
endif
|