ceph/qa/workunits/fs/Makefile
Sage Weil 507a4ec87b qa: move fs test binary into workunits dir so teuthology can build it
Teuthology does a make in the workunits dir, so move this in there.

Signed-off-by: Sage Weil <sage@inktank.com>
2013-07-05 11:16:08 -07:00

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)