mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-06 00:00:47 -04:00
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.2
|
|
|
|
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
|