############################################################################## # Copyright (c) 2004, The Regents of the University of California. # Produced at the Lawrence Livermore National Laboratory. # Written by Tim Harsch # UCRL-CODE-155918 # All rights reserved. # # This file is part of Schedule::DRMAAc. For details, see CPAN # Please also read LICENSE.txt which is found in this source distribution. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License (as published by the # Free Software Foundation) version 2, dated June 1991. # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY # OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the terms and conditions of the GNU General Public License for more # details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################## # $Id: Makefile.PL,v 1.4 2004/04/27 20:50:30 harsch Exp $ ############################################################################## use ExtUtils::MakeMaker; use Config; die < 'Schedule::DRMAAc', 'VERSION_FROM' => 'DRMAAc.pm', # finds $VERSION 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'DRMAAc.pm', # retrieve abstract from module AUTHOR => 'Tim Harsch ') : ()), 'LIBS' => ["-L$sgelib -ldrmaa -lsocket -lnsl -lm -lpthread"], 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' # Insert -I. if you add *.h files later: 'INC' => "-I$SGE_ROOT/include", # Un-comment this if you add C files to link with later: 'OBJECT' => '$(O_FILES)', # link all the C files too );