We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab8fb4c commit 4ff9e2aCopy full SHA for 4ff9e2a
Makefile
@@ -17,7 +17,7 @@ bindir = $(prefix)/bin
17
LIBS=-luuid
18
19
progs = btrfsctl mkfs.btrfs btrfs-debug-tree btrfs-show btrfs-vol btrfsck \
20
- btrfs-map-logical
+ btrfs-map-logical btrfs-list
21
22
# make C=1 to enable sparse
23
ifdef C
@@ -36,6 +36,9 @@ all: version $(progs) manpages
36
version:
37
bash version.sh
38
39
+btrfs-list: $(objects) btrfs-list.o
40
+ gcc $(CFLAGS) -o btrfs-list btrfs-list.o $(objects) $(LDFLAGS) $(LIBS)
41
+
42
btrfsctl: $(objects) btrfsctl.o
43
gcc $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS) $(LIBS)
44
0 commit comments