2007-03-01 05:35:06 +08:00
|
|
|
CC=gcc
|
2007-03-08 05:15:30 +08:00
|
|
|
CFLAGS = -g -Wall
|
2007-03-07 09:08:01 +08:00
|
|
|
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h
|
2007-03-14 04:47:54 +08:00
|
|
|
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
|
2007-03-16 07:03:33 +08:00
|
|
|
root-tree.o dir-item.o hash.o file-item.o inode-item.o
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2007-02-28 22:40:58 +08:00
|
|
|
# if you don't have sparse installed, use ls instead
|
2007-03-01 05:35:06 +08:00
|
|
|
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
|
|
|
|
-Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
|
|
|
|
check=sparse $(CHECKFLAGS)
|
2007-02-28 22:40:58 +08:00
|
|
|
#check=ls
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(check) $<
|
|
|
|
$(CC) $(CFLAGS) -c $<
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2007-03-16 03:18:43 +08:00
|
|
|
all: tester debug-tree quick-test dir-test
|
2007-02-26 23:40:21 +08: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 05:38:42 +08:00
|
|
|
|
2007-03-16 03:18:43 +08:00
|
|
|
dir-test: $(objects) dir-test.o
|
|
|
|
gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
|
2007-03-02 04:16:26 +08:00
|
|
|
quick-test: $(objects) quick-test.o
|
|
|
|
gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
|
|
|
|
|
2007-03-13 00:01:18 +08:00
|
|
|
$(objects): $(headers)
|
2007-02-24 19:24:44 +08:00
|
|
|
|
|
|
|
clean :
|
2007-02-26 23:55:01 +08:00
|
|
|
rm debug-tree tester *.o
|
2007-01-27 05:38:42 +08:00
|
|
|
|
2007-02-26 23:40:21 +08:00
|
|
|
|