Btrfs: Change the super to point to a tree of trees to enable persistent snapshots
[pandora-kernel.git] / fs / btrfs / Makefile
1
2 CC=gcc
3 CFLAGS = -g -Wall
4 headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h
5 objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
6           root-tree.o
7
8 # if you don't have sparse installed, use ls instead
9 CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
10                 -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
11 check=sparse $(CHECKFLAGS)
12 #check=ls
13
14 .c.o:
15         $(check) $<
16         $(CC) $(CFLAGS) -c $<
17
18 all: tester debug-tree quick-test
19
20 debug-tree: $(objects) debug-tree.o
21         gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o
22
23 tester: $(objects) random-test.o
24         gcc $(CFLAGS) -o tester $(objects) random-test.o
25
26 quick-test: $(objects) quick-test.o
27         gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
28
29 $(objects): $(headers)
30
31 clean :
32         rm debug-tree tester *.o
33
34