While permanentising meta/ 62628242 did not properly noindex it
[dbsrgits/DBIx-Class.git] / maint / Makefile.PL.inc / 51_autogen_README.pl
CommitLineData
388a1ec7 1# When a long-standing branch is updated a README may still inger around
2unlink 'README' if -f 'README';
3
fc4b0448 4# Makefile syntax allows adding extra dep-specs for already-existing targets,
5# and simply appends them on *LAST*-come *FIRST*-serve basis.
6# This allows us to inject extra depenencies for standard EUMM targets
7
8postamble <<"EOP";
9
10.PHONY: dbic_clonedir_cleanup_readme dbic_clonedir_gen_readme
11
12distdir : dbic_clonedir_cleanup_readme
13
14create_distdir : dbic_clonedir_gen_readme
15
16dbic_clonedir_gen_readme :
17\tpod2text lib/DBIx/Class.pm > README
18
19dbic_clonedir_cleanup_readme :
20\t\$(RM_F) README
21
22EOP
23
24# keep the Makefile.PL eval happy
251;