use ExtUtils::MakeMaker;
        # See lib/ExtUtils/MakeMaker.pm for details of how to influence
        # the contents of the Makefile that is written.
WriteMakefile(
	      'C'         => [''],
	      'NAME'      => 'KPop',
	      'VERSION_FROM' => 'KPop.pm', # finds $VERSION
#	      'LIBS'      => ['-L/mit/krb5/arch/@sys/lib -lkrb4 -ldes425 -lkrb5 -lcrypto -lcom_err'],   # e.g., '-lm'
	      'LIBS'      => ['-L/usr/athena/lib -lkrb -ldes -lhesiod -lresolv'],
	      'DEFINE'    => '',     # e.g., '-DHAVE_SOMETHING'
	      'INC'       => '-I. -I/usr/athena/include',     # e.g., '-I/usr/include/other'
	      'MYEXTLIB'  => 'pop.o'
	      );
