source: MondoRescue/trunk/mindi/Mindi/DiskSize/lib/Makefile.PL@ 30

Last change on this file since 30 was 30, checked in by bcornec, 19 years ago

Id property added on files to allow for better conf. management

  • Property svn:keywords set to Id
File size: 381 bytes
Line 
1use ExtUtils::MakeMaker;
2$Verbose = 1;
3WriteMakefile(
4 NAME => 'Mindi::DiskSize::lib',
5 SKIP => [qw(all static static_lib dynamic dynamic_lib)],
6 clean => {'FILES' => 'libdisksize.a'},
7);
8
9sub MY::top_targets {
10 '
11all :: static
12
13static :: libdisksize.a
14
15libdisksize.a: $(O_FILES)
16 $(AR) cr libdisksize.a $(O_FILES)
17 $(RANLIB) libdisksize.a
18';
19}
Note: See TracBrowser for help on using the repository browser.