mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 23:51:28 +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.
89 lines
1.2 KiB
Makefile
89 lines
1.2 KiB
Makefile
include $(top_srcdir)/Makefile.am.inc
|
|
|
|
SUBDIRS = \
|
|
lib
|
|
|
|
sbin_PROGRAMS = \
|
|
udevd \
|
|
udevadm
|
|
|
|
noinst_PROGRAMS = \
|
|
test-udev
|
|
|
|
common_ldadd =
|
|
|
|
common_files = \
|
|
udev.h \
|
|
udev-sysdeps.h \
|
|
udev-event.c \
|
|
udev-node.c \
|
|
udev-rules.c \
|
|
udev-util.c \
|
|
lib/libudev.h \
|
|
lib/libudev-private.h \
|
|
lib/libudev.c \
|
|
lib/libudev-list.c \
|
|
lib/libudev-util.c \
|
|
lib/libudev-device.c \
|
|
lib/libudev-device-db-write.c \
|
|
lib/libudev-monitor.c \
|
|
lib/libudev-enumerate.c \
|
|
lib/libudev-queue.c \
|
|
lib/libudev-ctrl.c
|
|
|
|
if USE_SELINUX
|
|
common_files += \
|
|
udev-selinux.c
|
|
common_ldadd += \
|
|
$(SELINUX_LIBS)
|
|
endif
|
|
|
|
udevd_SOURCES = \
|
|
$(common_files) \
|
|
udevd.c
|
|
|
|
udevd_LDADD = \
|
|
$(common_ldadd)
|
|
|
|
|
|
udevadm_SOURCES = \
|
|
$(common_files) \
|
|
udevadm.c \
|
|
udevadm-info.c \
|
|
udevadm-control.c \
|
|
udevadm-test.c \
|
|
udevadm-monitor.c \
|
|
udevadm-settle.c \
|
|
udevadm-trigger.c
|
|
|
|
udevadm_LDADD = \
|
|
$(common_ldadd)
|
|
|
|
|
|
test_udev_SOURCES = \
|
|
$(common_files) \
|
|
test-udev.c
|
|
|
|
test_udev_LDADD = \
|
|
$(common_ldadd)
|
|
|
|
|
|
dist_man_MANS = \
|
|
udev.7 \
|
|
udevadm.8 \
|
|
udevd.8
|
|
|
|
EXTRA_DIST = \
|
|
udev.xml \
|
|
udevadm.xml \
|
|
udevd.xml
|
|
|
|
%.7 %.8 : %.xml
|
|
$(XSLTPROC) -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(dist_man_MANS)
|
|
|
|
git-clean:
|
|
rm -f Makefile.in
|