diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-23 16:58:32 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-23 16:58:32 +0200 |
commit | 8f4d1086d4cd1e3196025f8a2c1586a4cf23ae6b (patch) | |
tree | fffc7542fa06caff3420a0cfbf19d0c6a6ded3ce /Makefile | |
parent | f239bfc2cffbefd075102b95205e582755ca9594 (diff) | |
download | pingu-8f4d1086d4cd1e3196025f8a2c1586a4cf23ae6b.tar.bz2 pingu-8f4d1086d4cd1e3196025f8a2c1586a4cf23ae6b.tar.xz |
configure: add --disable-doc flag
We now require asciidoc to be installed so we let manpages be optional
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10,7 +10,11 @@ PINGU_VERSION := $(shell \ export PINGU_VERSION -SUBDIRS := src doc +SUBDIRS := src + +ifdef ENABLE_DOC +SUBDIRS += doc +endif all: $(SUBDIRS) |