-
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.
yaml --- r: 128244 b: refs/heads/master c: 5de08d7 h: refs/heads/master v: v3
- Loading branch information
Chris Mason
authored and
David Woodhouse
committed
Feb 24, 2007
1 parent
4b8400f
commit a748298
Showing
7 changed files
with
177 additions
and
375 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: 9a8dd1502de6aa683ae46cf0397e9b6e636416fb | ||
refs/heads/master: 5de08d7d50ba535b968d97101ed2ab07c2b8eb7d |
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,12 +1,16 @@ | ||
|
||
CFLAGS= -g -Wall | ||
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 $< | ||
#.c.o: | ||
# $(CC) $(CFLAGS) -c $< | ||
|
||
ctree: ctree.o disk-io.h ctree.h disk-io.o radix-tree.o radix-tree.h mkfs.o | ||
gcc $(CFLAGS) -o ctree ctree.o disk-io.o radix-tree.o mkfs.o | ||
ctree : $(objects) | ||
gcc $(CFLAGS) -o ctree $(objects) | ||
|
||
clean: | ||
$(objects) : $(headers) | ||
|
||
clean : | ||
rm ctree *.o | ||
|
Oops, something went wrong.