Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/libpainter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2015-06-14 09:51:27 +0300
committerJay Sorg <jay.sorg@gmail.com>2015-06-14 09:51:27 +0300
commita62712531973ede8e3d52278372b527cb0a90cad (patch)
tree12c0c0a78b5d2379de27fe772a4144db46a401e3 /bootstrap
parentde4deb34003317cb697ef43c8faceffce8be91c6 (diff)
add autotools files
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap36
1 files changed, 36 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..ec344d3
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+which autoconf
+if ! test $? -eq 0
+then
+ echo "error, install autoconf"
+ exit 1
+fi
+
+which automake
+if ! test $? -eq 0
+then
+ echo "error, install automake"
+ exit 1
+fi
+
+which libtool
+if ! test $? -eq 0
+then
+ echo "error, install libtool"
+ exit 1
+fi
+
+which pkg-config
+if ! test $? -eq 0
+then
+ echo "error, install pkg-config"
+ exit 1
+fi
+
+touch configure.ac
+touch NEWS
+touch AUTHORS
+touch README
+touch ChangeLog
+autoreconf -fvi