mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +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>
19 lines
505 B
Makefile
19 lines
505 B
Makefile
SUBDIRS = lib config libaalogparse.test
|
|
PACKAGE = libaalogparse
|
|
AUTOMAKE_OPTIONS = dejagnu
|
|
|
|
INCLUDES = -I. -I$(top_srcdir)/src
|
|
|
|
AM_CPPFLAGS = $(DEBUG_FLAGS) -DLOCALEDIR=\"${localedir}\"
|
|
AM_CFLAGS = -Wall
|
|
|
|
noinst_PROGRAMS = test_multi.multi
|
|
|
|
test_multi_multi_SOURCES = test_multi.c
|
|
test_multi_multi_CFLAGS = -Wall
|
|
test_multi_multi_LDADD = -L../src/.libs -lapparmor
|
|
|
|
clean-local:
|
|
rm -rf tmp.err.* tmp.out.* site.exp site.bak test_multi/out
|
|
|
|
EXTRA_DIST = test_multi/*.in test_multi/*.out test_multi/*.err
|