aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-02-28 09:40:58 -0500
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-02-28 09:40:58 -0500
commitaf86d07efe83e2f2da3658702a720bc48b1a6d78 (patch)
tree0e8895099617f5cfd65680f936af3fc0a3cd87e6 /fs
parent8e19f2cd452853d1ca0895c2488c24d40de3d255 (diff)
Btrfs: Add sparse checking to Makefile
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/Makefile9
-rw-r--r--fs/btrfs/debug-tree.c2
2 files changed, 8 insertions, 3 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile
index ea9b6665da3..078061c321b 100644
--- a/fs/btrfs/Makefile
+++ b/fs/btrfs/Makefile
@@ -3,8 +3,13 @@ CFLAGS = -g -Wall
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o
-#.c.o:
-# $(CC) $(CFLAGS) -c $<
+# if you don't have sparse installed, use ls instead
+check=sparse
+#check=ls
+
+.c.o:
+ $(check) $<
+ $(CC) $(CFLAGS) -c $<
all: tester debug-tree
diff --git a/fs/btrfs/debug-tree.c b/fs/btrfs/debug-tree.c
index b2c5abfdc74..21f607d8b05 100644
--- a/fs/btrfs/debug-tree.c
+++ b/fs/btrfs/debug-tree.c
@@ -6,7 +6,7 @@
#include "disk-io.h"
#include "print-tree.h"
-int main() {
+int main(int ac, char **av) {
struct ctree_super_block super;
struct ctree_root *root;
radix_tree_init();