2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Perl script for creating a platform specific Makefile for building

Perl config library interface.
This commit is contained in:
James Brister 2000-06-16 20:47:22 +00:00
parent c00db9da64
commit b1e973dba2

View File

@ -0,0 +1,11 @@
use ExtUtils::MakeMaker;
$ENV{CC} = "gcc";
WriteMakefile('NAME' => 'DNSConf',
'OPTIMIZE' => '-g',
'PERLMAINCC' => 'gcc',
'LIBS' => [ '-L../../isc -L../../dns -ldns -lisc -lc_r' ],
'INC' => '-I../../isc/include -I../../isc/unix/include -I../../dns/include',
'dynamic_lib' => { OTHERLDFLAGS => '-pthread' },
'OBJECT' => 'DNSConf_wrap.o');