]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - fs/btrfs/Makefile
ea3e1493baa93e24bbd2e6edfe6ff94db4d7cef3
[mirror_ubuntu-bionic-kernel.git] / fs / btrfs / Makefile
1 CC=gcc
2 CFLAGS = -g -Wall
3 headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h
4 objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
5 root-tree.o dir-item.o hash.o
6
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)
11 #check=ls
12
13 .c.o:
14 $(check) $<
15 $(CC) $(CFLAGS) -c $<
16
17 all: tester debug-tree quick-test dir-test
18
19 debug-tree: $(objects) debug-tree.o
20 gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o
21
22 tester: $(objects) random-test.o
23 gcc $(CFLAGS) -o tester $(objects) random-test.o
24
25 dir-test: $(objects) dir-test.o
26 gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
27 quick-test: $(objects) quick-test.o
28 gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
29
30 $(objects): $(headers)
31
32 clean :
33 rm debug-tree tester *.o
34
35