#!/usr/bin/perl -w use strict; use ExtUtils::MakeMaker; use Config; WriteMakefile( NAME => 'cqpid_perl', PREREQ_PM => {}, AUTHOR => 'Jan-Marek Glogowski ', LIBS => ["-L@top_builddir@/src/.libs -lqpidmessaging -lqpidtypes"], DEFINE => '', INC => '-I@top_srcdir@/include -I@top_builddir@/include -I@top_srcdir@/src -I@top_builddir@/src -I@PERL_INC@', C => ['cqpid_perl.cpp'], # Un-comment this if you add C files to link with later: OBJECT => 'cqpid_perl.o', );