blob: 3bb87f41120596734203c24fc2a32afa445b6249 (
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
|
NAME=bcd
VERSION=3.7
PERL_VENDORLIB=$(shell eval "`perl -V:installvendorlib`"; echo $$installvendorlib)
ALL=
PM=Bcd.pm Common.pm Genisoimage.pm Isolinux.pm Media.pm Stagex.pm Resign.pm
POD=${name}.pod
all: man tex pdf
clean:
rm -rf *~
rm -rf BCD/*~
rm -rf lists/*~
rm -rf doc/*~
rm -rf ${NAME}.1.lzma
cd doc && rm -rf *.toc *.out *.log *.aux
cleandist: clean
rm -rf $(NAME)-$(VERSION) $(NAME)-$(VERSION).tar.bz2
install: $(ALL) man
install -d $(PREFIX)/usr/bin
install bcd.pl $(PREFIX)/usr/bin/bcd
install -m755 check_sign_by_path.pl $(PREFIX)/usr/bin/
install -m755 resign_rpm_by_path.pl $(PREFIX)/usr/bin/
install -d $(PREFIX)/$(PERL_VENDORLIB)/BCD
install BCD/*.pm $(PREFIX)/$(PERL_VENDORLIB)/BCD
install doc/${NAME}.pod $(PREFIX)/$(PERL_VENDORLIB)
install -d $(PREFIX)/usr/share/man/man1
install doc/${NAME}.1.lzma $(PREFIX)/usr/share/man/man1/
install doc/conf.xml.1.lzma $(PREFIX)/usr/share/man/man1/
man:
pod2man doc/${NAME}.pod > doc/${NAME}.1
pod2man doc/conf.xml.pod > doc/conf.xml.1
lzma -f doc/${NAME}.1
lzma -f doc/conf.xml.1
tex:
cd doc && pod2latex ${NAME}.pod
pdf:
cd doc && latex2pdf howto_bcd.tex
tar: export
tar cjf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
rm -rf $(NAME)-$(VERSION)
# tar cvfj bcd-${VERSION}.tar.bz2 .
dist: cleandist export tar
export:
svn export -q -rBASE . $(NAME)-$(VERSION)
dist: cleandist export tar
|