mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 01:11:00 +01:00

bashisms which were in place to get around PWD not getting set correctly. Instead, fix the simple.pl script to call pwd directly. Based on feedback from PLD/Arkadiusz Miskiewicz <arekm@maven.pl>.
18 lines
228 B
Makefile
18 lines
228 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)${PROVE} ${PROVE_ARG} ${TESTS}
|
|
|
|
../apparmor_parser:
|
|
make -C .. apparmor_parser
|