summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-04-30 21:59:56 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-04-30 21:59:56 +0200
commit858fefb5f1db61b8cc90149432fdc5f76677311e (patch)
tree31c2e08181baf79f7758f37919394dabb87be429 /config.mk
parent753fc6efd6488d16d83f9cc20b45958d9b208420 (diff)
Do not include help text by default
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.mk b/config.mk
index b19a6df..8bad1a4 100644
--- a/config.mk
+++ b/config.mk
@@ -19,6 +19,7 @@ CFLAGS += -Wall -Wextra -pedantic
curl ?= 1
debug ?= 0
+help ?= 0
xinerama ?= 1
ifeq (${curl},1)
@@ -36,6 +37,10 @@ else
MAN_DEBUG =
endif
+ifeq (${help},1)
+ CFLAGS += -DINCLUDE_HELP
+endif
+
ifeq (${xinerama},1)
CFLAGS += -DHAVE_LIBXINERAMA
LDLIBS += -lXinerama