mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 21:17:38 +00:00
6de383a262
Update udev-lfs tarball to remove obsolete cdrom rules and references to ISDN devices. Update to wheel-0.41.0 (Python Module). Update to tar-1.35. Update to systemd-254. Update to meson-1.2.0. Update to linux-6.4.7. Update to gcc-13.2.0. Update to file-5.45.
31 lines
773 B
Makefile
31 lines
773 B
Makefile
# Custom systemd Makefile that installs udev rules for LFS
|
|
# Bruce Dubbs 2014-04-02
|
|
|
|
# vim: tabstop=3
|
|
|
|
VERSION=20230728
|
|
SHELL=/bin/bash
|
|
|
|
ifeq ($(V),)
|
|
VB = @
|
|
else
|
|
VB =
|
|
endif
|
|
|
|
all:
|
|
@echo "Use the install target"
|
|
|
|
install:
|
|
@mkdir -pv $(DESTDIR)/usr/lib/udev/rules.d \
|
|
$(DESTDIR)/etc/udev/rules.d \
|
|
$(DESTDIR)/usr/share/doc/udev-$(VERSION)/lfs
|
|
|
|
# Copy rules
|
|
@cp -v udev-lfs-$(VERSION)/*.rules $(DESTDIR)/etc/udev/rules.d
|
|
@cp -v udev-lfs-$(VERSION)/init-net-rules.sh \
|
|
udev-lfs-$(VERSION)/rule_generator.functions $(DESTDIR)/usr/lib/udev
|
|
|
|
# Copy documentation
|
|
@cp -v udev-lfs-$(VERSION)/README $(DESTDIR)/usr/share/doc/udev-$(VERSION)/lfs
|
|
@cp -v udev-lfs-$(VERSION)/*.txt $(DESTDIR)/usr/share/doc/udev-$(VERSION)/lfs
|