mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-09 02:41:03 +01:00

$CPPFLAGS. Additionally, do not repeat compiler flags for automake targets that already include them, and pass more flags to the Perl build. Signed-off-by: Kees Cook <kees@ubuntu.com> Acked-By: Steve Beattie <sbeattie@ubuntu.com>
17 lines
449 B
Perl
17 lines
449 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
use vars qw($CFLAGS $OBJECT $VERSION $OPTIMIZE);
|
|
|
|
WriteMakefile(
|
|
'NAME' => 'LibAppArmor',
|
|
'MAKEFILE' => 'Makefile.perl',
|
|
'FIRST_MAKEFILE' => 'Makefile.perl',
|
|
'ABSTRACT' => q[Perl interface to AppArmor] ,
|
|
'VERSION' => q[@VERSION@],
|
|
'INC' => q[@CPPFLAGS@ -I@top_srcdir@/src @CFLAGS@],
|
|
'LIBS' => q[-L@top_builddir@/src/.libs/ -lapparmor @LIBS@],
|
|
'OBJECT' => 'libapparmor_wrap.o', # $(OBJ_EXT)
|
|
) ;
|
|
|