mirror of
https://github.com/ceph/ceph
synced 2024-12-17 08:57:28 +00:00
3c5dcf8958
Stupid tool to call the async snap ioctl. Until the btrfs tool does it. Signed-off-by: Sage Weil <sage@newdream.net>
12 lines
167 B
Makefile
12 lines
167 B
Makefile
CFLAGS = -Wall -Wextra -D_GNU_SOURCE
|
|
|
|
TARGETS = clone_range test_async_snap create_async_snap
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $@.c -o $@
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm $(TARGETS)
|