mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
5d89ef7bf9
[...] running the command `make maintainer-clean' should not delete `configure' even if `configure' can be remade using a rule in the Makefile. More generally, `make maintainer-clean' should not delete anything that needs to exist in order to run `configure' and then begin to build the program. This is the only exception; `maintainer-clean' should delete everything else that can be rebuilt.
26 lines
580 B
Makefile
26 lines
580 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-list.c \
|
|
../../udev/lib/libudev-util.c \
|
|
../../udev/lib/libudev-device.c \
|
|
../../udev/lib/libudev-enumerate.c \
|
|
../../udev/udev-util.c
|
|
|
|
if USE_SELINUX
|
|
create_floppy_devices_SOURCES += \
|
|
../../udev/udev-selinux.c
|
|
create_floppy_devices_LDADD = \
|
|
$(SELINUX_LIBS)
|
|
endif
|
|
|
|
dist_man_MANS = \
|
|
create_floppy_devices.8
|