f103e6263d
po/Makefile.in.in: Removing and restoring the config.xml file broke parallel builds. Build the manpages based on *.xml-config files instead of *.xml files. The *.xml do not include config.xml anymore, which permits to run xml2po without needing to remove config.xml. The config.xml is restored in the *.xml-config files. * man/groupadd.8.xml: Implementation of the above. * man/generate_mans.deps: Updated dependencies
35 lines
769 B
Makefile
35 lines
769 B
Makefile
if USE_PAM
|
|
PAM_COND=pam
|
|
else
|
|
PAM_COND=no_pam
|
|
endif
|
|
if SHADOWGRP
|
|
SHADOWGRP_COND=gshadow
|
|
else
|
|
SHADOWGRP_COND=no_gshadow
|
|
endif
|
|
|
|
if USE_SHA_CRYPT
|
|
SHA_CRYPT_COND=sha_crypt
|
|
else
|
|
SHA_CRYPT_COND=no_sha_crypt
|
|
endif
|
|
|
|
%.xml-config: %.xml Makefile
|
|
sed -e 's/^<!-- SHADOW-CONFIG-HERE -->/<!ENTITY % config SYSTEM "config.xml">%config;/' $< > $@
|
|
|
|
%: %.xml-config Makefile config.xml
|
|
if ENABLE_REGENERATE_MAN
|
|
$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(SHADOWGRP_COND);$(SHA_CRYPT_COND)" \
|
|
-nonet http://docbook.sourceforge.net/release/xsl/current/manpages/profile-docbook.xsl $<
|
|
else
|
|
@echo you need to run configure with --enable-man to generate man pages
|
|
@false
|
|
endif
|
|
|
|
grpconv.8 grpunconv.8 pwunconv.8: pwconv.8
|
|
|
|
getspnam.3: shadow.3
|
|
|
|
vigr.8: vipw.8
|