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

all: tester debug-tree

debug-tree: $(objects) debug-tree.o
	gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o

tester: $(objects) random-test.o
	gcc $(CFLAGS) -o tester $(objects) random-test.o

$(objects) : $(headers)

clean :
	rm debug-tree tester *.o