diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-02-26 10:40:21 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-02-26 10:40:21 -0500 |
commit | fec577fb7f516e0d12ff821b1af272fd754e120a (patch) | |
tree | f98b8adbf462cb3a146bcc3ec29e76beba5178ce /fs/btrfs/Makefile | |
parent | 97571fd0c939be8ae9cb57a8c57430a244ce13ae (diff) |
Btrfs: Add fsx-style randomized tree tester
Add debug-tree command to print the tree
Add extent-tree.c to the repo
Comment ctree.h
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/Makefile')
-rw-r--r-- | fs/btrfs/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile index fe73ab9d81d6..855e8f499e37 100644 --- a/fs/btrfs/Makefile +++ b/fs/btrfs/Makefile | |||
@@ -6,11 +6,17 @@ objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o | |||
6 | #.c.o: | 6 | #.c.o: |
7 | # $(CC) $(CFLAGS) -c $< | 7 | # $(CC) $(CFLAGS) -c $< |
8 | 8 | ||
9 | ctree : $(objects) | 9 | all: tester debug-tree |
10 | gcc $(CFLAGS) -o ctree $(objects) | 10 | |
11 | debug-tree: $(objects) debug-tree.o | ||
12 | gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o | ||
13 | |||
14 | tester: $(objects) random-test.o | ||
15 | gcc $(CFLAGS) -o tester $(objects) random-test.o | ||
11 | 16 | ||
12 | $(objects) : $(headers) | 17 | $(objects) : $(headers) |
13 | 18 | ||
14 | clean : | 19 | clean : |
15 | rm ctree *.o | 20 | rm ctree *.o |
16 | 21 | ||
22 | |||