btrfs-progs/Makefile

50 lines
1.4 KiB
Makefile
Raw Normal View History

2007-02-28 21:35:06 +00:00
CC=gcc
2007-03-16 20:20:31 +00:00
CFLAGS = -g -Wall -Werror
2007-03-20 13:13:49 +00:00
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \
2007-04-10 13:27:30 +00:00
transaction.h ioctl.h
2007-03-21 00:35:03 +00:00
objects = ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
root-tree.o dir-item.o hash.o file-item.o inode-item.o \
inode-map.o \
2007-04-05 18:29:12 +00:00
#
2007-02-28 14:40:58 +00:00
# if you don't have sparse installed, use ls instead
2007-02-28 21:35:06 +00:00
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
-Wuninitialized -Wshadow -Wundef
2007-02-28 21:35:06 +00:00
check=sparse $(CHECKFLAGS)
2007-02-28 14:40:58 +00:00
#check=ls
.c.o:
$(check) $<
$(CC) $(CFLAGS) -c $<
2007-02-02 14:18:22 +00:00
all: tester debug-tree quick-test dir-test mkfs.btrfs \
btrfsctl btrfsck
2007-04-10 13:27:30 +00:00
btrfsctl: ioctl.h btrfsctl.o $(headers)
2007-04-10 13:27:30 +00:00
gcc $(CFLAGS) -o btrfsctl btrfsctl.o
2007-03-21 00:35:03 +00:00
btrfsck: btrfsck.o $(headers) bit-radix.o
gcc $(CFLAGS) -o btrfsck btrfsck.o $(objects) bit-radix.o
mkfs.btrfs: $(objects) mkfs.o $(headers)
2007-04-05 18:29:12 +00:00
gcc $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o -luuid
bit-radix-test: $(objects) bit-radix.o $(headers)
2007-04-02 18:18:17 +00:00
gcc $(CFLAGS) -o bit-radix-test $(objects) bit-radix.o
debug-tree: $(objects) debug-tree.o $(headers)
2007-04-05 18:29:12 +00:00
gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o -luuid
tester: $(objects) random-test.o $(headers)
gcc $(CFLAGS) -o tester $(objects) random-test.o
dir-test: $(objects) dir-test.o $(headers)
gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
quick-test: $(objects) quick-test.o $(headers)
gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
2007-04-26 20:46:06 +00:00
$(objects): $(headers)
2007-02-24 11:24:44 +00:00
clean :
rm debug-tree mkfs.btrfs btrfsctl btrfsck *.o