bring back the inode number directory index
[btrfs-progs-unstable.git] / Makefile
blob7058b08898223d6578746da4b0b5f1a7a20488b4
1 CC=gcc
2 CFLAGS = -g -Wall -Werror
3 headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \
4 transaction.h ioctl.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 \
7 inode-map.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)
13 #check=ls
15 .c.o:
16 $(check) $<
17 $(CC) $(CFLAGS) -c $<
19 all: bit-radix-test tester debug-tree quick-test dir-test tags mkfs.btrfs \
20 btrfsctl
22 btrfsctl: ioctl.h btrfsctl.o
23 gcc $(CFLAGS) -o btrfsctl btrfsctl.o
25 mkfs.btrfs: $(objects) mkfs.o
26 gcc $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o -luuid
28 bit-radix-test: $(objects) bit-radix.o
29 gcc $(CFLAGS) -o bit-radix-test $(objects) bit-radix.o
31 debug-tree: $(objects) debug-tree.o
32 gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o -luuid
34 tester: $(objects) random-test.o
35 gcc $(CFLAGS) -o tester $(objects) random-test.o
37 dir-test: $(objects) dir-test.o
38 gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
39 quick-test: $(objects) quick-test.o
40 gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
42 $(objects): $(headers)
44 clean :
45 rm debug-tree mkfs.btrfs btrfsctl *.o