source: udev-lfs/Makefile.lfs@ 3781c69

11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 3781c69 was 3781c69, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove eol spaces

  • Property mode set to 100644
File size: 815 bytes
Line 
1# Custom systemd Makefile that installs udev rules for LFS
2# Bruce Dubbs 2014-04-02
3
4# vim: tabstop=3
5
6VERSION=20171102
7SHELL=/bin/bash
8
9ifeq ($(V),)
10 VB = @
11else
12 VB =
13endif
14
15all:
16 @echo "Use the install target"
17
18install:
19 @mkdir -pv $(DESTDIR)/lib/udev/rules.d \
20 $(DESTDIR)/etc/udev/rules.d \
21 $(DESTDIR)/usr/share/doc/udev-$(VERSION)/lfs
22
23 # Copy rules
24 @cp -v udev-lfs-$(VERSION)/*.rules $(DESTDIR)/etc/udev/rules.d
25 @cp -v udev-lfs-$(VERSION)/*_rules \
26 udev-lfs-$(VERSION)/init-net-rules.sh \
27 udev-lfs-$(VERSION)/rule_generator.functions $(DESTDIR)/lib/udev
28
29 # Copy documentation
30 @cp -v udev-lfs-$(VERSION)/README $(DESTDIR)/usr/share/doc/udev-$(VERSION)/lfs
31 @cp -v udev-lfs-$(VERSION)/*.txt $(DESTDIR)/usr/share/doc/udev-$(VERSION)/lfs
Note: See TracBrowser for help on using the repository browser.