2007-01-27 05:38:42 +08:00
|
|
|
|
2007-02-24 19:24:44 +08:00
|
|
|
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
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2007-02-24 19:24:44 +08:00
|
|
|
#.c.o:
|
|
|
|
# $(CC) $(CFLAGS) -c $<
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2007-02-24 19:24:44 +08:00
|
|
|
ctree : $(objects)
|
|
|
|
gcc $(CFLAGS) -o ctree $(objects)
|
2007-01-27 05:38:42 +08:00
|
|
|
|
2007-02-24 19:24:44 +08:00
|
|
|
$(objects) : $(headers)
|
|
|
|
|
|
|
|
clean :
|
2007-02-02 22:18:22 +08:00
|
|
|
rm ctree *.o
|
2007-01-27 05:38:42 +08:00
|
|
|
|