Skip to content

Commit

Permalink
Btrfs: Add backing store, memory management
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Chris Mason authored and David Woodhouse committed Feb 2, 2007
1 parent 4920c9a commit eb60cea
Show file tree
Hide file tree
Showing 8 changed files with 1,447 additions and 163 deletions.
11 changes: 8 additions & 3 deletions fs/btrfs/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@

ctree: ctree.o
gcc -g -O2 -Wall -o ctree ctree.c
CFLAGS= -g -Wall

.c.o:
$(CC) $(CFLAGS) -c $<

ctree: ctree.o disk-io.h ctree.h disk-io.o radix-tree.o radix-tree.h
gcc $(CFLAGS) -o ctree ctree.o disk-io.o radix-tree.o

clean:
rm ctree ctree.o
rm ctree *.o

Loading

0 comments on commit eb60cea

Please sign in to comment.