ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/RCU/Irman/Makefile.PL
Revision: 1.2
Committed: Sun Nov 6 17:24:32 2005 UTC (18 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     WriteMakefile(
4     NAME => 'RCU::Irman',
5     VERSION_FROM=> 'Irman.pm',
6     LIBS => ['-lirman'],
7     EXE_FILES => ['rcu-irman-helper'],
8     );
9    
10     sub MY::postamble {
11     <<'EOF';
12    
13     all :: rcu-irman-helper
14    
15     rcu-irman-helper: rcu-irman-helper.c ../helper.c
16     $(CC) -o rcu-irman-helper $(CCFLAGS) $(OPTIMIZE) $(DEFINE) $(INC) rcu-irman-helper.c $(LDFLAGS) $(EXTRALIBS)
17    
18     EOF
19     }