use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
    'NAME'		=>    'ComErr',
    'VERSION_FROM'	=> 'ComErr.pm', # finds $VERSION
    'LIBS'		=> ['-L/usr/athena/lib -lcom_err'],
    'DEFINE'		=> '-DMYDEBUG',   # e.g., '-DHAVE_SOMETHING' 
    'INC'		=> '-I/usr/athena/include',
);
