blob: 67d40e7cd90c8ad00ad5ffdc7cf0783629d40a24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
PACKAGE = udev-init-scripts
VERSION = 25
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= $(shell pkg-config udev --variable=udevdir)
RULESDIR ?= $(LIBUDEV)/rules.d
SYSCONFDIR ?= /etc
CONFD ?= $(SYSCONFDIR)/conf.d
INITD ?= $(SYSCONFDIR)/init.d
HELPERS = \
helpers/net.sh
all:
install:
install -d $(DESTDIR)$(LIBUDEV)
install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV)
install -d $(DESTDIR)$(RULESDIR)
install -m 0644 rules.d/??-*.rules $(DESTDIR)$(RULESDIR)
install -d $(DESTDIR)$(CONFD)
install -m 0644 conf.d/* $(DESTDIR)$(CONFD)
install -d $(DESTDIR)$(INITD)
install -m 0755 init.d/* $(DESTDIR)$(INITD)
check-git-repository:
git diff --quiet || { echo 'STOP, you have uncommitted changes in the working directory' ; false ; }
git diff --cached --quiet || { echo 'STOP, you have uncommitted changes in the index' ; false ; }
dist:
git archive --format=tar --prefix=$(DISTNAME)/ $(VERSION) | \
bzip2 > $(DISTNAME).tar.bz2
snapshot: check-git-repository
git archive --format=tar --prefix=$(PACKAGE)/ HEAD | \
bzip2 > $(PACKAGE).tar.bz2
.PHONY: install
|