Apparently -i and -jN do not work on win32, what the hell
[dbsrgits/DBIx-Class.git] / maint / Makefile.PL.inc / 51_autohandle_MANIFEST.pl
CommitLineData
a0c96f24 1# make sure manifest is deleted and generated anew on distdir
2# preparation, and is deleted on realclean
3
4postamble <<"EOM";
5
6fresh_manifest : remove_manifest manifest
1fb834df 7@{[ $crlf_fixup->('MANIFEST') ]}
a0c96f24 8
9remove_manifest :
7c0072ba 10\t\$(RM_F) MANIFEST
a0c96f24 11
12realclean :: remove_manifest
13
aab82aa7 14manifest : check_manifest_is_lone_target
15
16check_manifest_is_lone_target :
17\t\$(NOECHO) @{[
18 $mm_proto->oneliner('q($(MAKECMDGOALS)) =~ /(\S*manifest\b)/ and q($(MAKECMDGOALS)) ne $1 and die qq(The DBIC build chain does not support mixing the $1 target with others\n)')
19]}
20
a0c96f24 21EOM
22
23# keep the Makefile.PL eval happy
241;