add transaction.h to the Makefile
[btrfs-progs-unstable.git] / Makefile
blob7953b41848c1bdcf6f2770304dccfc2df3bdca68
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
5 objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
6 root-tree.o dir-item.o hash.o file-item.o inode-item.o
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
14 .c.o:
15 $(check) $<
16 $(CC) $(CFLAGS) -c $<
18 all: tester debug-tree quick-test dir-test tags
20 debug-tree: $(objects) debug-tree.o
21 gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o
23 tester: $(objects) random-test.o
24 gcc $(CFLAGS) -o tester $(objects) random-test.o
26 dir-test: $(objects) dir-test.o
27 gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
28 quick-test: $(objects) quick-test.o
29 gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
31 $(objects): $(headers)
33 clean :
34 rm debug-tree tester *.o