mirror of
https://github.com/ceph/ceph
synced 2024-12-16 08:26:25 +00:00
d5a9301f2c
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
12 lines
169 B
Makefile
12 lines
169 B
Makefile
CFLAGS = -Wall -Wextra -D_GNU_SOURCE
|
|
|
|
TARGETS = direct_io_test test_sync_io test_short_dio_read
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $@.c -o $@
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm $(TARGETS)
|