summaryrefslogtreecommitdiff
path: root/Makefile
blob: fe73ab9d81d60b961a6acc4deb0cedd75819d566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 $<

ctree : $(objects)
	gcc $(CFLAGS) -o ctree $(objects)

$(objects) : $(headers)

clean :
	rm ctree *.o