blob: 46ddead25c3caeec29677ec40b9cb055ac54edf4 (
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
|
#---------------------------------------------------------------
# Project : Mandriva Linux
# Module : repsys
# File : Makefile
# Version : $Id$
# Author : Frederic Lepied
# Created On : Wed Dec 7 11:33:09 2005
#---------------------------------------------------------------
PACKAGE=repsys
VERSION:=$(shell rpm -q --qf %{VERSION} --specfile $(PACKAGE).spec)
RELEASE:=$(shell rpm -q --qf %{RELEASE} --specfile $(PACKAGE).spec)
TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
FILES = ChangeLog Makefile MANIFEST.in PKG-INFO create-srpm getsrpm-mdk rebrand-mdk \
repsys repsys.conf repsys.spec setup.cfg setup.py RepSys/*.py RepSys/{cgi,commands}/*.py
# rules to build a test rpm
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 $(RPMOPT) $(PACKAGE)-$(VERSION).tar.bz2
# rules to build a distributable rpm
rpm: changelog cvstag dist 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
rm -f ChangeLog.bak
cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog
# Local variables:
# mode: makefile
# End:
#
# Makefile ends here
|