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