Makefile 837 字节
Newer Older
1

C
Chris Mason 已提交
2
CC=gcc
3
CFLAGS = -g -Wall
4
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h
5
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
6
	  root-tree.o dir-item.o hash.o
7

8
# if you don't have sparse installed, use ls instead
C
Chris Mason 已提交
9 10 11
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
		-Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
check=sparse $(CHECKFLAGS)
12 13 14 15 16
#check=ls

.c.o:
	$(check) $<
	$(CC) $(CFLAGS) -c $<
17

18
all: tester debug-tree quick-test
19 20 21 22 23 24

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
25

26 27 28
quick-test: $(objects) quick-test.o
	gcc $(CFLAGS) -o quick-test $(objects) quick-test.o

29
$(objects): $(headers)
C
Chris Mason 已提交
30 31

clean :
C
Chris Mason 已提交
32
	rm debug-tree tester *.o
33

34