btrfs-progs/Makefile

73 lines
2.0 KiB
Makefile
Raw Normal View History

2007-02-28 21:35:06 +00:00
CC=gcc
AM_CFLAGS = -Wall -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2
CFLAGS = -g -Werror -Os
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 file-item.o inode-item.o \
inode-map.o crc32c.o rbtree.o extent-cache.o extent_io.o \
volumes.o utils.o
2007-04-05 18:29:12 +00:00
#
2007-02-28 21:35:06 +00:00
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
-Wuninitialized -Wshadow -Wundef
DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@
2007-06-08 02:12:21 +00:00
2007-06-09 13:22:37 +00:00
INSTALL= install
2007-06-28 20:03:23 +00:00
prefix ?= /usr/local
2007-06-09 13:22:37 +00:00
bindir = $(prefix)/bin
LIBS=-luuid
2007-06-09 13:22:37 +00:00
progs = btrfsctl btrfsck mkfs.btrfs debug-tree btrfs-show btrfs-vol
2007-06-08 02:12:21 +00:00
# make C=1 to enable sparse
ifdef C
check=sparse $(CHECKFLAGS)
else
check=ls
endif
2007-02-28 14:40:58 +00:00
.c.o:
$(check) $<
$(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
2007-02-02 14:18:22 +00:00
2007-04-10 13:27:30 +00:00
all: version $(progs)
version:
bash version.sh
2007-06-08 02:12:21 +00:00
btrfsctl: $(objects) btrfsctl.o
gcc $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS) $(LIBS)
btrfs-vol: $(objects) btrfs-vol.o
gcc $(CFLAGS) -o btrfs-vol btrfs-vol.o $(objects) $(LDFLAGS) $(LIBS)
2007-03-21 00:35:03 +00:00
btrfs-show: $(objects) btrfs-show.o
gcc $(CFLAGS) -o btrfs-show btrfs-show.o $(objects) $(LDFLAGS) $(LIBS)
2007-06-08 02:12:21 +00:00
btrfsck: $(objects) btrfsck.o bit-radix.o
gcc $(CFLAGS) -o btrfsck btrfsck.o $(objects) bit-radix.o $(LDFLAGS) $(LIBS)
mkfs.btrfs: $(objects) mkfs.o
gcc $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o $(LDFLAGS) $(LIBS)
2007-06-08 02:12:21 +00:00
debug-tree: $(objects) debug-tree.o
gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o $(LDFLAGS) $(LIBS)
2007-06-08 02:12:21 +00:00
dir-test: $(objects) dir-test.o
gcc $(CFLAGS) -o dir-test $(objects) dir-test.o $(LDFLAGS) $(LIBS)
2007-06-08 02:12:21 +00:00
quick-test: $(objects) quick-test.o
gcc $(CFLAGS) -o quick-test $(objects) quick-test.o $(LDFLAGS) $(LIBS)
2007-04-26 20:46:06 +00:00
convert: $(objects) convert.o
gcc $(CFLAGS) -o btrfs-convert $(objects) convert.o -lext2fs $(LDFLAGS) $(LIBS)
2007-02-24 11:24:44 +00:00
clean :
rm -f $(progs) cscope.out *.o .*.d btrfs-convert
2007-06-09 13:22:37 +00:00
install: $(progs)
$(INSTALL) -m755 -d $(DESTDIR)$(bindir)
$(INSTALL) $(progs) $(DESTDIR)$(bindir)
if [ -e btrfs-convert ]; then $(INSTALL) btrfs-convert $(DESTDIR)$(bindir); fi
2007-06-09 13:22:37 +00:00
-include .*.d