2007-03-01 04:35:06 +07:00
|
|
|
CC=gcc
|
2007-03-17 03:20:31 +07:00
|
|
|
CFLAGS = -g -Wall -Werror
|
2007-03-20 20:13:49 +07:00
|
|
|
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \
|
|
|
|
transaction.h
|
2007-03-21 07:35:03 +07:00
|
|
|
objects = ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
|
2007-03-21 01:38:32 +07:00
|
|
|
root-tree.o dir-item.o hash.o file-item.o inode-item.o \
|
|
|
|
inode-map.o \
|
2007-02-02 21:18:22 +07:00
|
|
|
|
2007-02-28 21:40:58 +07:00
|
|
|
# if you don't have sparse installed, use ls instead
|
2007-03-01 04:35:06 +07:00
|
|
|
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
|
|
|
|
-Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
|
|
|
|
check=sparse $(CHECKFLAGS)
|
2007-02-28 21:40:58 +07:00
|
|
|
#check=ls
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(check) $<
|
|
|
|
$(CC) $(CFLAGS) -c $<
|
2007-02-02 21:18:22 +07:00
|
|
|
|
2007-03-21 07:35:03 +07:00
|
|
|
all: tester debug-tree quick-test dir-test tags mkfs.btrfs
|
|
|
|
|
|
|
|
mkfs.btrfs: $(objects) mkfs.o
|
|
|
|
gcc $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o
|
2007-02-26 22:40:21 +07:00
|
|
|
|
|
|
|
debug-tree: $(objects) debug-tree.o
|
|
|
|
gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o
|
|
|
|
|
|
|
|
tester: $(objects) random-test.o
|
|
|
|
gcc $(CFLAGS) -o tester $(objects) random-test.o
|
2007-01-27 04:38:42 +07:00
|
|
|
|
2007-03-16 02:18:43 +07:00
|
|
|
dir-test: $(objects) dir-test.o
|
|
|
|
gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
|
2007-03-02 03:16:26 +07:00
|
|
|
quick-test: $(objects) quick-test.o
|
|
|
|
gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
|
|
|
|
|
2007-03-12 23:01:18 +07:00
|
|
|
$(objects): $(headers)
|
2007-02-24 18:24:44 +07:00
|
|
|
|
|
|
|
clean :
|
2007-02-26 22:55:01 +07:00
|
|
|
rm debug-tree tester *.o
|
2007-01-27 04:38:42 +07:00
|
|
|
|
2007-02-26 22:40:21 +07:00
|
|
|
|