diff options
Diffstat (limited to 'fs/btrfs/Makefile')
-rw-r--r-- | fs/btrfs/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile index 078061c321b0..58d4260a04b2 100644 --- a/fs/btrfs/Makefile +++ b/fs/btrfs/Makefile | |||
@@ -1,10 +1,13 @@ | |||
1 | 1 | ||
2 | CC=gcc | ||
2 | CFLAGS = -g -Wall | 3 | CFLAGS = -g -Wall |
3 | headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h | 4 | headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h |
4 | objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o | 5 | objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o |
5 | 6 | ||
6 | # if you don't have sparse installed, use ls instead | 7 | # if you don't have sparse installed, use ls instead |
7 | check=sparse | 8 | CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \ |
9 | -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef | ||
10 | check=sparse $(CHECKFLAGS) | ||
8 | #check=ls | 11 | #check=ls |
9 | 12 | ||
10 | .c.o: | 13 | .c.o: |