ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/Makefile.PL
Revision: 1.5
Committed: Thu Apr 19 12:55:30 2012 UTC (12 years, 1 month ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.4: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 if(0){
4 print <<EOF;
5
6 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
7
8
9 Welcome to OpenCL configuration. If you are in a hurry, just press return here
10 and hope for the best. The defaults should usually do.
11
12 EOF
13
14 if (prompt ("Skip further questions and use defaults (y/n)?", "y") =~ /[yY]/) {
15 $ENV{PERL_MM_USE_DEFAULT} = 1;
16 }
17 }
18
19 if(0){
20 print <<EOF;
21
22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
23
24
25 Most OpenCL implementations can interface to OpenGL. Should This module
26 try to take advantage of and offer support for OpenGL?
27
28 EOF
29
30 my $DEFINE .= " -DHAVE_OPENGL=" . (0 + (prompt ("Enable optional support for OpenGL (y/n)?", "y") =~ /[yY]/));
31 }
32
33 WriteMakefile(
34 dist => {
35 PREOP => 'pod2text OpenCL.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
36 COMPRESS => 'gzip -9v',
37 SUFFIX => '.gz',
38 },
39 PREREQ_PM => {
40 common::sense => 0,
41 },
42 DEFINE => $DEFINE,
43 NAME => "OpenCL",
44 VERSION_FROM => "OpenCL.pm",
45 LIBS => ["-lOpenCL"],
46 );
47