2007-07-28 15:41:04 +00:00
|
|
|
SUBDIRS = lib config libaalogparse.test
|
|
|
|
PACKAGE = libaalogparse
|
|
|
|
AUTOMAKE_OPTIONS = dejagnu
|
|
|
|
|
2020-05-28 09:55:31 -07:00
|
|
|
COMMONDIR=$(top_srcdir)/../../common
|
|
|
|
include $(COMMONDIR)/Make.rules
|
|
|
|
|
2014-01-06 14:08:55 -08:00
|
|
|
INCLUDES = -I. -I$(top_srcdir)/include
|
2007-07-28 15:41:04 +00:00
|
|
|
|
|
|
|
AM_CPPFLAGS = $(DEBUG_FLAGS) -DLOCALEDIR=\"${localedir}\"
|
2007-08-21 17:28:34 +00:00
|
|
|
AM_CFLAGS = -Wall
|
2007-07-28 15:41:04 +00:00
|
|
|
|
|
|
|
noinst_PROGRAMS = test_multi.multi
|
|
|
|
|
|
|
|
test_multi_multi_SOURCES = test_multi.c
|
2020-05-28 09:55:31 -07:00
|
|
|
test_multi_multi_CFLAGS = -Wall $(EXTRA_WARNINGS)
|
2011-01-05 14:41:11 -08:00
|
|
|
test_multi_multi_LDADD = -L../src/.libs -lapparmor
|
2007-07-28 15:41:04 +00:00
|
|
|
|
|
|
|
clean-local:
|
2010-11-03 17:04:43 -07:00
|
|
|
rm -rf tmp.err.* tmp.out.* site.exp site.bak test_multi/out
|
2015-12-12 12:56:06 +01:00
|
|
|
rm -f libaalogparse.log libaalogparse.sum
|
|
|
|
|
2017-04-20 20:16:11 +00:00
|
|
|
check-local: check-DEJAGNU
|
2017-04-20 20:16:25 +00:00
|
|
|
@if ! test -f libaalogparse.log ; then echo '*** libaalogparse.log not found - is dejagnu installed? ***'; exit 1; fi
|
|
|
|
@if grep ERROR libaalogparse.log ; then exit 1 ; fi
|
2007-07-28 15:41:04 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = test_multi/*.in test_multi/*.out test_multi/*.err
|