File: Makefile.PL

package info (click to toggle)
libcrypt-unixcrypt-xs-perl 0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 344 kB
  • sloc: ansic: 652; perl: 15; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 742 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use ExtUtils::MakeMaker;
$Verbose = 1;
WriteMakefile(
    OPTIMIZE => '-O3',
    NAME   => 'Crypt::UnixCrypt_XS::fcrypt',
    SKIP   => [qw(all static static_lib dynamic dynamic_lib)],
    clean  => {'FILES' => 'libfcrypt$(LIB_EXT)'},
);

sub MY::top_targets {'
all :: static

pure_all :: static

static ::       libfcrypt$(LIB_EXT)

libfcrypt$(LIB_EXT): $(O_FILES)
	$(AR) cr libfcrypt$(LIB_EXT) $(O_FILES)
	$(RANLIB) libfcrypt$(LIB_EXT)
'.($ExtUtils::MakeMaker::VERSION >= 7.16?'

dynamic ::
	$(NOECHO) $(NOOP)
':''); #https://rt.cpan.org/Ticket/Display.html?id=117800
               }