blob: b76a11c55e05198d4717c51c36dbfcf854773831 (
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 = 15
DISTNAME = $(PACKAGE)-$(VERSION)
LIBUDEV ?= /lib/udev
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
|