btrfs-progs/Makefile

63 lines
1.3 KiB
Makefile
Raw Normal View History

2007-02-28 22:35:06 +01:00
CC=gcc
2007-06-09 15:22:37 +02:00
CFLAGS = -g -Wall -fno-strict-aliasing -Werror
2007-03-21 01:35:03 +01: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 \
2007-06-28 22:20:29 +02:00
inode-map.o crc32c.o\
2007-04-05 20:29:12 +02:00
#
2007-02-28 22:35:06 +01:00
CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \
-Wuninitialized -Wshadow -Wundef
2007-06-08 04:12:21 +02:00
2007-06-09 15:22:37 +02:00
INSTALL= install
2007-06-28 22:03:23 +02:00
prefix ?= /usr/local
2007-06-09 15:22:37 +02:00
bindir = $(prefix)/bin
2007-06-08 04:12:21 +02:00
progs = btrfsctl btrfsck mkfs.btrfs debug-tree
# make C=1 to enable sparse
ifdef C
check=sparse $(CHECKFLAGS)
else
check=ls
endif
2007-02-28 15:40:58 +01:00
.c.o:
$(check) $<
$(CC) $(CFLAGS) -c $<
2007-02-02 15:18:22 +01:00
2007-04-10 15:27:30 +02:00
2007-06-08 04:12:21 +02:00
all: $(progs)
$(progs): depend
depend:
@$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend
btrfsctl: btrfsctl.o
2007-04-10 15:27:30 +02:00
gcc $(CFLAGS) -o btrfsctl btrfsctl.o
2007-03-21 01:35:03 +01:00
2007-06-08 04:12:21 +02:00
btrfsck: $(objects) btrfsck.o bit-radix.o
gcc $(CFLAGS) -o btrfsck btrfsck.o $(objects) bit-radix.o
2007-06-08 04:12:21 +02:00
mkfs.btrfs: $(objects) mkfs.o
2007-04-05 20:29:12 +02:00
gcc $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o -luuid
2007-06-08 04:12:21 +02:00
debug-tree: $(objects) debug-tree.o
2007-04-05 20:29:12 +02:00
gcc $(CFLAGS) -o debug-tree $(objects) debug-tree.o -luuid
2007-06-08 04:12:21 +02:00
dir-test: $(objects) dir-test.o
gcc $(CFLAGS) -o dir-test $(objects) dir-test.o
2007-06-08 04:12:21 +02:00
quick-test: $(objects) quick-test.o
gcc $(CFLAGS) -o quick-test $(objects) quick-test.o
2007-04-26 22:46:06 +02:00
2007-02-24 12:24:44 +01:00
clean :
2007-06-08 04:12:21 +02:00
rm -f $(progs) cscope.out *.o .depend
2007-06-09 15:22:37 +02:00
install: $(progs)
$(INSTALL) -m755 -d $(DESTDIR)$(bindir)
$(INSTALL) $(progs) $(DESTDIR)$(bindir)
2007-06-08 04:12:21 +02:00
ifneq ($(wildcard .depend),)
include .depend
endif