mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-28 06:35:34 +07:00
28b8a50320
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
53 lines
972 B
Makefile
53 lines
972 B
Makefile
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
dist_udevrules_DATA = \
|
|
42-usb-hid-pm.rules \
|
|
50-udev-default.rules \
|
|
60-cdrom_id.rules \
|
|
60-drm.rules \
|
|
60-persistent-alsa.rules \
|
|
60-persistent-input.rules \
|
|
60-persistent-serial.rules \
|
|
60-persistent-storage-tape.rules \
|
|
60-persistent-v4l.rules \
|
|
61-accelerometer.rules \
|
|
64-btrfs.rules \
|
|
75-net-description.rules \
|
|
75-probe_mtd.rules \
|
|
75-tty-description.rules \
|
|
78-sound-card.rules \
|
|
95-udev-late.rules
|
|
|
|
if !ENABLE_RULE_GENERATOR
|
|
dist_udevrules_DATA += \
|
|
80-net-name-slot.rules
|
|
endif
|
|
|
|
if ENABLE_FIRMWARE
|
|
dist_udevrules_DATA += \
|
|
50-firmware.rules
|
|
endif
|
|
|
|
if HAVE_BLKID
|
|
dist_udevrules_DATA += \
|
|
60-persistent-storage.rules
|
|
endif
|
|
|
|
if HAVE_MODULES
|
|
if HAVE_LIBKMOD
|
|
dist_udevrules_DATA += \
|
|
80-drivers.rules
|
|
else
|
|
dist_udevrules_DATA += \
|
|
80-drivers-modprobe.rules
|
|
endif
|
|
endif
|
|
|
|
if ENABLE_KEYMAP
|
|
dist_udevrules_DATA += \
|
|
60-keyboard.rules
|
|
endif
|
|
|
|
install-data-local:
|
|
$(MKDIR_P) $(DESTDIR)$(udevconfdir)/rules.d
|