1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

makefiles: sort

This commit is contained in:
Zdenek Kabelac 2018-12-14 21:50:09 +01:00
parent a8cdd9e16a
commit d76b4afb8e
5 changed files with 13 additions and 13 deletions

View File

@ -18,9 +18,9 @@
# which defined all top_* variables
BASE_SOURCE=\
base/data-struct/radix-tree.c \
base/data-struct/hash.c \
base/data-struct/list.c
base/data-struct/list.c \
base/data-struct/radix-tree.c
BASE_DEPENDS = $(BASE_SOURCE:%.c=%.d)
BASE_OBJECTS = $(BASE_SOURCE:%.c=%.o)

View File

@ -23,11 +23,10 @@ LVMDBUS_SRCDIR_FILES = \
cfg.py \
cmdhandler.py \
fetch.py \
__init__.py \
job.py \
loader.py \
main.py \
lv.py \
main.py \
manager.py \
objectmanager.py \
pv.py \
@ -35,7 +34,8 @@ LVMDBUS_SRCDIR_FILES = \
state.py \
udevwatch.py \
utils.py \
vg.py
vg.py \
__init__.py
LVMDBUS_BUILDDIR_FILES = \
lvmdb.py \

View File

@ -15,6 +15,7 @@
DEVICE_MAPPER_SOURCE=\
device_mapper/datastruct/bitset.c \
device_mapper/ioctl/libdm-iface.c \
device_mapper/libdm-common.c \
device_mapper/libdm-config.c \
device_mapper/libdm-deptree.c \
@ -27,9 +28,8 @@ DEVICE_MAPPER_SOURCE=\
device_mapper/regex/matcher.c \
device_mapper/regex/parse_rx.c \
device_mapper/regex/ttree.c \
device_mapper/ioctl/libdm-iface.c \
device_mapper/vdo/vdo_target.c \
device_mapper/vdo/status.c
device_mapper/vdo/status.c \
device_mapper/vdo/vdo_target.c
DEVICE_MAPPER_DEPENDS = $(DEVICE_MAPPER_SOURCE:%.c=%.d)
DEVICE_MAPPER_OBJECTS = $(DEVICE_MAPPER_SOURCE:%.c=%.o)

View File

@ -20,11 +20,11 @@ UNIT_SOURCE=\
test/unit/config_t.c \
test/unit/dmlist_t.c \
test/unit/dmstatus_t.c \
test/unit/io_engine_t.c \
test/unit/radix_tree_t.c \
test/unit/matcher_t.c \
test/unit/framework.c \
test/unit/io_engine_t.c \
test/unit/matcher_t.c \
test/unit/percent_t.c \
test/unit/radix_tree_t.c \
test/unit/run.c \
test/unit/string_t.c \
test/unit/vdo_t.c

View File

@ -28,6 +28,7 @@ SOURCES =\
lvextend.c \
lvmcmdline.c \
lvmdiskscan.c \
lvpoll.c \
lvreduce.c \
lvremove.c \
lvrename.c \
@ -56,10 +57,9 @@ SOURCES =\
vgexport.c \
vgextend.c \
vgimport.c \
vgimportclone.c \
vgmerge.c \
vgmknodes.c \
lvpoll.c \
vgimportclone.c \
vgreduce.c \
vgremove.c \
vgrename.c \