btrfs-progs/Makefile

34 lines
803 B
Makefile
Raw Normal View History

2007-02-28 22:35:06 +01:00
CC=gcc
2007-03-07 22:15:30 +01:00
CFLAGS = -g -Wall
2007-03-07 02:08:01 +01:00
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h
2007-02-24 12:24:44 +01:00
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o
2007-02-02 15:18:22 +01:00
2007-02-28 15:40:58 +01:00
# if you don't have sparse installed, use ls instead
2007-02-28 22:35:06 +01:00
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
-Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef
check=sparse $(CHECKFLAGS)
2007-02-28 15:40:58 +01:00
#check=ls
.c.o:
$(check) $<
$(CC) $(CFLAGS) -c $<
2007-02-02 15:18:22 +01:00
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
2007-02-24 12:24:44 +01:00
$(objects) : $(headers)
clean :
2007-02-26 16:55:01 +01:00
rm debug-tree tester *.o