-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
67 lines (50 loc) · 1.51 KB
/
Makefile
File metadata and controls
67 lines (50 loc) · 1.51 KB
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
# Simplified Makefile for devscripts
include Makefile.common
DESTDIR =
PERL_MODULES = Devscripts
EXAMPLES = conf.default README.mk-build-deps
PREFIX ?= /usr
DOCDIR ?= $(PREFIX)/share/doc/devscripts
MAN1DIR ?= $(PREFIX)/share/man/man1
all: version make_scripts $(EXAMPLES) translated_manpages
version:
rm -f version
dpkg-parsechangelog | perl -ne '/^Version: (.*)/ && print $$1' \
> version
conf.default: conf.default.in version
rm -f $@ $@.tmp
VERSION=`cat version` && sed -e "s/###VERSION###/$$VERSION/" $< \
> $@.tmp && mv $@.tmp $@
translated_manpages:
$(MAKE) -C po4a/
touch translated_manpages
clean_translated_manpages:
# Update the POT/POs and remove the translated man pages
$(MAKE) -C po4a/ clean
rm -f translated_manpages
clean: clean_scripts clean_translated_manpages
rm -f version conf.default make_scripts
online-test:
$(MAKE) -C test/ online-test
test: test_test test_scripts
test-installed:
$(MAKE) -C test/ $@
install: all install_scripts
cp -a $(PERL_MODULES) $(DESTDIR)$(PERLMOD_DIR)
cp $(EXAMPLES) $(DESTDIR)$(EXAMPLES_DIR)
install -D README $(DESTDIR)$(DOCDIR)/README
install -dD $(DESTDIR)$(MAN1DIR)
cp doc/*.1 $(DESTDIR)$(MAN1DIR)
ln -sf edit-patch.1 $(DESTDIR)$(MAN1DIR)/add-patch.1
test_test:
$(MAKE) -C test/ test
make_scripts: version
$(MAKE) -C scripts/
touch $@
clean_scripts: clean_translated_manpages
$(MAKE) -C scripts/ clean
test_scripts:
$(MAKE) -C scripts/ test
install_scripts:
$(MAKE) -C scripts/ install DESTDIR=$(DESTDIR)
.PHONY: online-test test test-installed