blob: fd684f6647b7652702bb3b9d12cc1e97a06d8ca4 (
plain) (
blame)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# Copyright (C) 2015, 2016 Mattias Andrée <maandree@member.fsf.org>
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
#=== This file includes empty rules that are filled by other files. ===#
.PHONY: all
all:
.PHONY: everything
everything:
.PHONY: base
base:
.PHONY: cmd
cmd:
.PHONY: lib
lib:
.PHONY: doc
doc:
.PHONY: check
check:
.PHONY: install
install:
.PHONY: install-everything
install-everything:
.PHONY: install-base
install-base:
.PHONY: install-cmd
install-cmd:
.PHONY: install-lib
install-lib:
.PHONY: install-doc
install-doc:
.PHONY: installcheck
installcheck:
.PHONY: uninstall
uninstall:
.PHONY: all
all: base
.PHONY: everything
everything: base
.PHONY: base
base: cmd lib
.PHONY: install
install: install-base
.PHONY: install-everything
install-everything: install-base
.PHONY: install-base
install-base: install-cmd install-lib
.PHONY: install-strip
install-strip: __STRIP = -s
install-strip: install
.PHONY: install-everything-strip
install-everything-strip: __STRIP = -s
install-everything-strip: install-everything
.PHONY: install-base-strip
install-base-strip: __STRIP = -s
install-base-strip: install-base
.PHONY: install-cmd-strip
install-cmd-strip: __STRIP = -s
install-cmd-strip: install-cmd
.PHONY: install-lib-strip
install-lib-strip: __STRIP = -s
install-lib-strip: install-lib
|