Makefile 1002 字节
Newer Older
C
Chris Mason 已提交
1
CC=gcc
2
CFLAGS = -g -Wall -Werror
3 4
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \
	  transaction.h
5
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \
6 7
	  root-tree.o dir-item.o hash.o file-item.o inode-item.o \
	  inode-map.o \
8

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

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

19
all: tester debug-tree quick-test dir-test tags
20 21 22 23 24 25

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
26

27 28
dir-test: $(objects) dir-test.o
	gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
29 30 31
quick-test: $(objects) quick-test.o
	gcc $(CFLAGS) -o quick-test $(objects) quick-test.o

32
$(objects): $(headers)
C
Chris Mason 已提交
33 34

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

37