apparmor/parser/tst/Makefile
Steve Beattie 90c9b5c0cd This patch fixes the apparmor parser tst Makefile to not use popd/pushd
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>.
2006-12-15 08:10:25 +00:00

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