123456789101112131415161718192021222324252627282930313233 |
- CC=gcc
- CFLAGS = -g -Wall
- headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h
- objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o
- # if you don't have sparse installed, use ls instead
- CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
- -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
- check=sparse $(CHECKFLAGS)
- #check=ls
- .c.o:
- $(check) $<
- $(CC) $(CFLAGS) -c $<
- all: tester debug-tree quick-test
- 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
- quick-test: $(objects) quick-test.o
- gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
- $(objects): $(headers)
- clean :
- rm debug-tree tester *.o
|