diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2011-09-29 08:38:28 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2011-09-29 08:38:28 +0200 |
commit | d0444c7bd2713466995b986c8d47fb467f79a458 (patch) | |
tree | 3cd2a33ba8fd4cef7ef8c32ad07f5438f4764b4b | |
parent | 15273596f42e24f86d48b502f48414714ee4971c (diff) | |
download | smokeping-d0444c7bd2713466995b986c8d47fb467f79a458.tar.gz smokeping-d0444c7bd2713466995b986c8d47fb467f79a458.tar.xz |
include thirdparty libs when building docs
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index dd6b065..a584507 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -50,8 +50,8 @@ MAN1 = $(addsuffix .1,$(PROGBASE)) POD2MAN = pod2man --release=$(VERSION) --center=SmokePing $< # we go to this trouble to ensure that MAKEPOD only uses modules in the installation directory -MAKEPOD= PERL5LIB=$(PERL5LIB) $(PERL) -I../lib -mSmokeping -e 'Smokeping::main()' -- --makepod -GENEX= PERL5LIB=$(PERL5LIB) $(PERL) -I../lib -mSmokeping -e 'Smokeping::main()' -- --gen-examples +MAKEPOD= PERL5LIB=$(PERL5LIB) $(PERL) -I../thirdparty/lib/perl5 -I../lib -mSmokeping -e 'Smokeping::main()' -- --makepod +GENEX= PERL5LIB=$(PERL5LIB) $(PERL) -I../thirdparty/lib/perl5 -I../lib -mSmokeping -e 'Smokeping::main()' -- --gen-examples %.7: %.pod $(AM_V_GEN)$(POD2MAN) --section 7 > $@ |