mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
fec577fb7f
Add debug-tree command to print the tree Add extent-tree.c to the repo Comment ctree.h Signed-off-by: Chris Mason <chris.mason@oracle.com>
23 lines
441 B
Makefile
23 lines
441 B
Makefile
|
|
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 $<
|
|
|
|
all: tester debug-tree
|
|
|
|
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
|
|
|
|
$(objects) : $(headers)
|
|
|
|
clean :
|
|
rm ctree *.o
|
|
|
|
|