-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Mason
authored and
David Woodhouse
committed
Feb 2, 2007
1 parent
bc1261a
commit b1e9587
Showing
9 changed files
with
1,448 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4920c9ac9a4bbc6bf9acd8c614987ee6b378e78f | ||
refs/heads/master: eb60ceac0ebd11e9896ed1ca84fcad71a4b23601 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
Oops, something went wrong.