I am struggling to get MakeMaker to integrate an extra DLL into a build.
I have an XS module, with its associated bits & pieces generated by h2xs. All is fine, and
nmake all works for the main module. However, I have another DLL, (EnvProcessDll) which does not use XS or anything perly, required to be built at the same time (this is going to be used for DLL injection). I added this to Makefile.PL:
sub MY::postamble {
return <<'MAKE_FRAG';
Dll: EnvProcessDll.c
$(CC) $(CCFLAGS) EnvProcessDll.c /link /OUT:.\$(INST_ARCHLIB)\aut
+o\$(FULLEXT)\EnvProcessDll.$(SO) -dll
MAKE_FRAG
}
This generates a Makefile where the target, Dll, can be built using
nmake Dll. How do I arrange Makefile.PL so that this target is included in
nmake all?
I could just document the extra nmake, but I intend to put this on CPAN and the extra step would be missing by those reluctant to RTFM.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.