From d845297ecb738510077a29dbdcf3f4ad307dc610 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Mon, 16 May 2016 10:22:03 +0000 Subject: [PATCH] build.sh script to help automate build procedure --- build.sh | 10 ++++++++++ README.md | 2 ++ 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/README.md b/README.md index f135a2d..ab63732 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,8 @@ ``make install`` +This procedure can be done automatically by calling the build.sh script. + 2. Use ------ diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..1a24bc2 --- /dev/null +++ b/build.sh @@ -0,0 +1,10 @@ +#!/bin/bash +#This is a build script that helps with the initial build as described in README file +aclocal +autoheader +automake -ac +autoconf +./configure +make +make install + -- Gitblit v1.9.3