mirror of
https://github.com/ceph/ceph
synced 2024-12-16 00:15:35 +00:00
507a4ec87b
Teuthology does a make in the workunits dir, so move this in there. Signed-off-by: Sage Weil <sage@inktank.com>
12 lines
134 B
Makefile
12 lines
134 B
Makefile
CFLAGS = -Wall -Wextra -D_GNU_SOURCE
|
|
|
|
TARGETS = test_o_trunc
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $@.c -o $@
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm $(TARGETS)
|