You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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 mkfs.o
|
|
gcc $(CFLAGS) -o ctree ctree.o disk-io.o radix-tree.o mkfs.o
|
|
|
|
clean:
|
|
rm ctree *.o
|
|
|
|
|