blob: 19cfe437f9426f54544714929a3e2c777636e9fe (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
include Makefile.config
PACKAGE = ldetect-lst
VERSION := $(shell rpm -q --qf '%{VERSION}\n' --specfile $(PACKAGE).spec | head -1)
RELEASE := $(shell rpm -q --qf '%{RELEASE}\n' --specfile $(PACKAGE).spec | head -1)
TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
FILES = AUTHORS ChangeLog Makefile Makefile.config convert err ldetect-lst.spec lst update-ldetect-lst
build:
make -C lst build
check:
make -C lst check
clean:
rm -f *~
make -C lst clean
install: build
install -d $(bindir) $(sbindir) $(dir)
make -C lst install
install update-ldetect-lst $(sbindir)
install convert/merge2pcitable.pl $(bindir)
# rules to build a test rpm
localsrpm: check changelog localdist
rpm -ts $(PACKAGE)-$(VERSION).tar.bz2
localrpm: localdist buildrpm
localdist: cleandist dir localcopy tar
cleandist:
rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2
dir:
mkdir $(PACKAGE)-$(VERSION)
localcopy:
tar c $(FILES) | tar x -C $(PACKAGE)-$(VERSION)
tar:
tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
bzip2 -9vf $(PACKAGE)-$(VERSION).tar
rm -rf $(PACKAGE)-$(VERSION)
buildrpm:
rpm -ta $(PACKAGE)-$(VERSION).tar.bz2
# rules to build a distributable rpm
srpm: check changelog cvstag dist
rpm -ts $(PACKAGE)-$(VERSION).tar.bz2
rpm: srpm buildrpm
dist: cleandist dir export tar
export:
cvs export -d $(PACKAGE)-$(VERSION) -r $(TAG) $(PACKAGE)
cvstag:
cvs tag $(CVSTAGOPT) $(TAG)
changelog: ../common/username
cvs2cl -U ../common/username -I ChangeLog --accum
rm -f ChangeLog.bak
cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog
# Makefile ends here
|