What exactly is wrong here?
[EMAIL PROTECTED] #@ makefile.pl # as generated by h2xs -PAXn WHCodec use 5.008001; use Inline::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'WHCodec', VERSION_FROM => 'lib/WHCodec.pm', # finds $VERSION PREREQ_PM => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT => 'lib/WHCodec.pm', # retrieve abstract from module AUTHOR => 'Me') : ()), ); #@ whcodec.pm # package WHCodec; use base Exporter; @WHCodec::ISA = qw(Exporter); @WHCodec::EXPORT = qw(ecb dcb makeSeed ecbg dcbg makeSeedg); $WHCodec::VERSION = '1.00'; use strict; use Inline (C => '/csrc/wh.c' => NAME => 'WHCodec', VERSION => '1.00' ); 1; __END__ #@ makefile # as generated by makefile.pl above [snip] # End. # Well, not quite. Inline::MakeMaker is adding this: # --- MakeMaker inline section: .SUFFIXES: .pm .inl .pm.inl: $(PERL) -Mblib -MInline=NOISY,_INSTALL_ -MWHCodec -e1 1.00 $(INST_ARCHLIB) pure_all :: WHCodec.inl # The End is here. [EMAIL PROTECTED] Result: #___________________________ C:\src\max\guis\WHCodec\WHCodec>makefile.pl Checking if your kit is complete... Looks good Writing Makefile for WHCodec C:\src\max\guis\WHCodec\WHCodec>nmake Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. cp lib/csrc/wh.c blib\lib\csrc\wh.c cp lib/WHCodec.pm blib\lib\WHCodec.pm NMAKE : fatal error U1073: don't know how to make 'WHCodec.inl' Stop. #________________________ Inline-0.44 Inline-C Activestate Win32 VS 6 ENT This is very frustrating as it is directly as instructed, after my previous email having decided to do this. TIA, AHA