mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
631d7d950a
Signed-off-by: Chris Mason <chris.mason@oracle.com>
37 lines
983 B
Makefile
37 lines
983 B
Makefile
CC=gcc
|
|
CFLAGS = -g -Wall -Werror
|
|
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \
|
|
transaction.h
|
|
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
|
|
root-tree.o dir-item.o hash.o file-item.o inode-item.o
|
|
|
|
# if you don't have sparse installed, use ls instead
|
|
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
|
|
-Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
|
|
check=sparse $(CHECKFLAGS)
|
|
#check=ls
|
|
|
|
.c.o:
|
|
$(check) $<
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
all: tester debug-tree quick-test dir-test tags
|
|
|
|
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
|
|
|
|
dir-test: $(objects) dir-test.o
|
|
gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
|
|
quick-test: $(objects) quick-test.o
|
|
gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
|
|
|
|
$(objects): $(headers)
|
|
|
|
clean :
|
|
rm debug-tree tester *.o
|
|
|
|
|