Utilize Pod::Inherit to add an INHERITED METHODS section to docs
[dbsrgits/DBIx-Class.git] / maint / Makefile.PL.inc / 54_autogen_inherited_pod.pl
CommitLineData
3d4c5a84 1# generate the inherit pods as both a clone-dir step, and a makefile distdir step
2
3print "Regenerating project documentation to include inherited methods\n";
4# if the author doesn't have them, don't fail the initial "perl Makefile.pl" step
5do "maint/gen_pod_inherit" or print "\n!!! FAILED: $@\n";
6
7postamble <<"EOP";
8
9.PHONY: dbic_clonedir_gen_inherit_pods
10
11create_distdir : dbic_clonedir_gen_inherit_pods
12
13dbic_clonedir_gen_inherit_pods :
14\t\$(ABSPERL) maint/gen_pod_inherit
15
16EOP
fc4b0448 17
18# keep the Makefile.PL eval happy
191;