summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-01-29 08:26:46 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-01-29 10:13:29 +0200
commit81a0a4fc41010bf2f002a7416990d83df167d62f (patch)
tree3e1ae5fcbe4454f8b5856bda0c325262745d844c /Makefile
parent3e0c7ecdd97b2ec8528650328064693e9fff01ce (diff)
build: enable readline in MU_HACKER build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a1b638f..a972a3a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-## Copyright (C) 2008-2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
+## Copyright (C) 2008-2023 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -27,8 +27,11 @@ ifneq ($(V),0)
endif
# when MU_HACKER is set, do a debug build
+# MU_HACKER is for djcb & compatible developers
ifneq (${MU_HACKER},)
-MESON_FLAGS:=$(MESON_FLAGS) '-Dbuildtype=debug' '-Db_sanitize=address'
+MESON_FLAGS:=$(MESON_FLAGS) '-Dbuildtype=debug' \
+ '-Db_sanitize=address' \
+ '-Dreadline=enabled'
endif
.PHONY: all