2 CFLAGS = -g -Wall -Werror
3 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 extent-tree.o print-tree.o \
6 root-tree.o dir-item.o hash.o file-item.o inode-item.o \
9 # if you don't have sparse installed, use ls instead
10 CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
11 -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
12 check=sparse $(CHECKFLAGS)
19 all: bit-radix-test tester debug-tree quick-test dir-test tags mkfs.btrfs
21 mkfs.btrfs: $(objects) mkfs.o
22 gcc $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o -luuid
24 bit-radix-test: $(objects) bit-radix.o
25 gcc $(CFLAGS) -o bit-radix-test $(objects) bit-radix.o
27 debug-tree: $(objects) debug-tree.o
28 gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o -luuid
30 tester: $(objects) random-test.o
31 gcc $(CFLAGS) -o tester $(objects) random-test.o
33 dir-test: $(objects) dir-test.o
34 gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
35 quick-test: $(objects) quick-test.o
36 gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
38 $(objects): $(headers)
41 rm debug-tree tester *.o