Adds XFRM state/policy flush when terminating which caused tests to fail
due to the check added with 9086f060d3 ("testing: Let test scenarios
fail if IPsec SAs or policies are not removed").
24 lines
403 B
Makefile
24 lines
403 B
Makefile
#!/usr/bin/make
|
|
|
|
PKG = tkm
|
|
SRC = http://git.codelabs.ch/git/$(PKG).git
|
|
REV = v0.1.3
|
|
|
|
export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat
|
|
|
|
all: install
|
|
|
|
$(PKG):
|
|
git clone $(SRC) $(PKG)
|
|
|
|
.$(PKG)-cloned-$(REV): $(PKG)
|
|
cd $(PKG) && git fetch && git checkout $(REV)
|
|
@touch $@
|
|
|
|
.$(PKG)-built-$(REV): .$(PKG)-cloned-$(REV)
|
|
cd $(PKG) && make
|
|
@touch $@
|
|
|
|
install: .$(PKG)-built-$(REV)
|
|
cd $(PKG) && make install
|