mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
e598c5738c
"Hello world!" linked against libselinux parses /proc/mounts and whatever else on startup, even when the lib is not needed at all. Not funny! Get rid of that thing where it's not absolutely needed.
25 lines
479 B
Makefile
25 lines
479 B
Makefile
include $(top_srcdir)/Makefile.am.inc
|
|
|
|
udevhomedir = $(udev_prefix)/lib/udev
|
|
udevhome_PROGRAMS = \
|
|
create_floppy_devices
|
|
|
|
create_floppy_devices_SOURCES = \
|
|
create_floppy_devices.c \
|
|
../../udev/lib/libudev.h \
|
|
../../udev/lib/libudev.c \
|
|
../../udev/lib/libudev-util.c \
|
|
../../udev/udev_utils.c \
|
|
../../udev/udev_selinux.c
|
|
|
|
if USE_SELINUX
|
|
create_floppy_devices_LDADD = \
|
|
$(SELINUX_LIBS)
|
|
endif
|
|
|
|
dist_man_MANS = \
|
|
create_floppy_devices.8
|
|
|
|
distclean-local:
|
|
rm -f Makefile.in
|