4 headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h
5 objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o
7 # if you don't have sparse installed, use ls instead
8 CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
9 -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
10 check=sparse $(CHECKFLAGS)
17 all: tester debug-tree
19 debug-tree: $(objects) debug-tree.o
20 gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o
22 tester: $(objects) random-test.o
23 gcc $(CFLAGS) -o tester $(objects) random-test.o
25 $(objects) : $(headers)
28 rm debug-tree tester *.o