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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
# Copyright (C) 2004-2023 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
include $(top_builddir)/make.tmpl
.DELETE_ON_ERROR:
cmds.h: $(top_srcdir)/tools/command-lines.in $(top_srcdir)/tools/license.inc Makefile
@echo " [GEN] $@"
$(Q) \
( cat $(top_srcdir)/tools/license.inc && \
echo "/* Do not edit. This file is generated by the Makefile. */" && \
echo "cmd(CMD_NONE, none)" && \
trap "$(RM) $@-t" EXIT INT QUIT TERM && \
$(AWK) '/^ID:/ {print "cmd(" $$2 "_CMD, " $$2 ")"}' $< >$@-t && \
LC_ALL=C $(SORT) -u $@-t && \
echo "cmd(CMD_COUNT, count)" \
) > $@
all: cmds.h
DISTCLEAN_TARGETS += configure.h lvm-version.h
CLEAN_TARGETS += cmds.h cmds.h-t \
.symlinks \
.symlinks_created \
activate.h \
archiver.h \
bcache.h \
btree.h \
clvm.h \
config-util.h \
config.h \
config_settings.h \
crc.h \
daemon-client.h \
daemon-io.h \
defaults.h \
dev-cache.h \
dev-ext-udev-constants.h \
dev-type.h \
device-types.h \
device.h \
display.h \
dm-ioctl.h \
dm-log-userspace.h \
dm-logging.h \
dmlib.h \
filter.h \
format-text.h \
format1.h \
format_pool.h \
intl.h \
kdev_t.h \
label.h \
last-path-component.h \
lib.h \
libdevmapper-event.h \
libdevmapper.h \
locking.h \
log.h \
lv.h \
lvm-exec.h \
lvm-file.h \
lvm-flock.h \
lvm-globals.h \
lvm-logging.h \
lvm-maths.h \
lvm-percent.h \
lvm-signal.h \
lvm-string.h \
lvm-wrappers.h \
lvm2app.h \
lvm2cmd.h \
lvmcache.h \
lvmetad-client.h \
lvmetad.h \
lvmlockd-client.h \
lvmlockd.h \
lvmnotify.h \
lvmpolld-client.h \
lvmpolld-protocol.h \
lv_alloc.h \
memlock.h \
metadata-exported.h \
metadata.h \
pogen.h \
polldaemon.h \
polling_ops.h \
properties.h \
prop_common.h \
pv.h \
pv_alloc.h \
report.h \
segtype.h \
sharedlib.h \
str_list.h \
targets.h \
text_export.h \
text_import.h \
tool.h \
toolcontext.h \
util.h \
uuid.h \
vg.h \
xlate.h \
cmds.h
|