mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 00:41:03 +01:00
18 lines
247 B
Makefile
18 lines
247 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
PROVE=/usr/bin/prove
|
|
TESTS=simple.pl
|
|
|
|
ifeq ($(VERBOSE),1)
|
|
PROVE_ARG=-v
|
|
endif
|
|
|
|
all: tests
|
|
|
|
.PHONY: tests
|
|
tests: ../apparmor_parser
|
|
$(Q)pushd . && ${PROVE} ${PROVE_ARG} ${TESTS} && popd
|
|
|
|
../apparmor_parser:
|
|
make -C .. apparmor_parser
|