aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: dbe3e4175e97d8d2034ea8f4adf7d3234a3ffcd5 (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
#---------------------------------------------------------------
# Project         : Linux-Mandrake
# Module          : spec-helper
# File            : Makefile
# Version         : $Id$
# Author          : Frederic Lepied
# Created On      : Fri Feb 18 08:11:21 2000
#---------------------------------------------------------------

VERSION=0.3
FILES= spec-helper clean_files compress_files strip_files relative_me_babe
DISTFILES= Makefile ChangeLog Howto-spec-helper $(FILES) macroszification
NAME=spec-helper
DIST=$(NAME)-$(VERSION)
bindir=/usr/bin

all:
	@echo "use make install or make dist"

dist:
	rm -f $(NAME)-$(VERSION).tar.bz2
	rm -rf $(DIST)
	mkdir $(DIST)
	ln $(DISTFILES) $(DIST)
	tar cvf $(NAME)-$(VERSION).tar $(DIST)
	bzip2 -9vf $(NAME)-$(VERSION).tar
	rm -rf $(DIST)

install:
	install -d -m755 $(bindir)
	install -m755 macroszification $(bindir)/
	install -d -m 755 $(DESTDIR)/usr/share/spec-helper
	install -m 755 $(FILES) $(DESTDIR)/usr/share/spec-helper

dis:
	rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar*
	mkdir -p $(NAME)-$(VERSION)
	ln $(DISTFILES) $(NAME)-$(VERSION)
	tar cvf ../$(NAME)-$(VERSION).tar $(NAME)-$(VERSION)
	bzip2 -9vf ../$(NAME)-$(VERSION).tar
	rm -rf $(NAME)-$(VERSION)

changelog:
#cvs2cl is available in our contrib.
	cvs2cl -U .username -I ChangeLog -I $(NAME).spec
	rm -f ChangeLog.bak
	cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog

rpm: ../$(NAME)-$(VERSION).tar.bz2
	test -d $(RPM)/SOURCES && test -d $(RPM)/
	cp -f ../$(NAME)-$(VERSION).tar.bz2 $(RPM)/SOURCES
	-rpm -ba --clean --rmsource $(NAME).spec
	rm -f $(NAME)-$(VERSION).tar.bz2

# Local variables:
# mode: makefile
# End:
#
# Makefile ends here