build openssl-fips in KVM root-image

This commit is contained in:
Andreas Steffen
2013-04-19 18:34:35 +02:00
parent 2d902d7e7c
commit 70312e6596
5 changed files with 49 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/make
PKG = tkm
SRC = http://git.codelabs.ch/git/$(PKG).git
REV = v0.1
export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat
all: install
.$(PKG)-cloned:
git clone $(SRC) $(PKG)
cd $(PKG) && git checkout $(REV)
@touch $@
.$(PKG)-built: .$(PKG)-cloned
cd $(PKG) && make tests && make
@touch $@
install: .$(PKG)-built
cd $(PKG) && make install