summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2021-07-23 18:06:02 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2021-07-23 18:06:02 -0400
commit632feaa69a08069856cf5d0bc064d152cd161646 (patch)
tree9b445a7ee003c566fb98da4d717d66fa3c78a4ab /Makefile
parent646aabf327f423ab7e5d66b7982c6e9942a8897c (diff)
Bring back debug makefile target
This seems to have been dropped by mistake Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c448bbb8..6dcbc068 100644
--- a/Makefile
+++ b/Makefile
@@ -106,6 +106,10 @@ bcachefs: $(filter-out ./tests/%.o, $(OBJS))
MOUNT_SRCS=$(shell find mount/src -type f -iname '*.rs') \
mount/Cargo.toml mount/Cargo.lock mount/build.rs
+
+debug: CFLAGS+=-Werror -DCONFIG_BCACHEFS_DEBUG=y -DCONFIG_VALGRIND=y
+debug: bcachefs
+
libbcachefs_mount.a: $(MOUNT_SRCS)
LIBBCACHEFS_INCLUDE=$(CURDIR) cargo build --manifest-path mount/Cargo.toml --release
cp mount/target/release/libbcachefs_mount.a $@