File: Makefile.PL

package info (click to toggle)
libbackuppc-xs-perl 0.62-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,348 kB
  • sloc: ansic: 9,652; sh: 3,084; perl: 73; makefile: 3
file content (57 lines) | stat: -rw-r--r-- 1,707 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
use 5.008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
my $object = q[
            BackupPC_XS$(OBJ_EXT)
            bpc_attrib$(OBJ_EXT)
            bpc_attribCache$(OBJ_EXT)
            bpc_dirOps$(OBJ_EXT)
            bpc_fileDigest$(OBJ_EXT)
            bpc_fileZIO$(OBJ_EXT)
            bpc_hashtable$(OBJ_EXT)
            bpc_lib$(OBJ_EXT)
            bpc_poolWrite$(OBJ_EXT)
            bpc_refCount$(OBJ_EXT)
    ];
$object =~ s/[\n\r\s]+/ /g;

WriteMakefile(
    NAME              => 'BackupPC::XS',
    VERSION_FROM      => 'lib/BackupPC/XS.pm', # finds $VERSION
    ABSTRACT_FROM     => 'lib/BackupPC/XS.pm', # finds ABSTRACT
    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
    LIBS              => ['-lz'], # e.g., '-lm'
    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
    INC               => '-I.', # e.g., '-I. -I/usr/include/other'
    OBJECT            => $object,
    MYEXTLIB          => 'md5/libmd5$(LIB_EXT)',
    depend            => { 'BackupPC_XS.o' => 'config.h' },
    clean             => { FILES => "config.log config.status config.h" },
);

# by Nicholas Clark <nick@ccl4.org>
# https://github.com/Perl/perl5/commit/4d106cc5d8fd328d39b1db3c57572dd3dec915b5
#
# We don't want the default subdir rule, as it creates a race condition with the
# rule we add below.
sub MY::subdir_x {
    return '';
}

sub MY::postamble {
        return <<'EOF';

#zlib/libzlib$(LIB_EXT): zlib/Makefile config.h
#	cd zlib && $(MAKE) $(PASSTHRU)

md5/libmd5$(LIB_EXT): md5/Makefile config.h
	cd md5 && $(MAKE) $(PASSTHRU)

config.h: config.h.in
	./configure.sh

$(OBJECT) : config.h

EOF
}