summaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh
new file mode 100755
index 00000000..58297f67
--- /dev/null
+++ b/setup.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+
+# RUN ME after pulling the code from git!
+if [ "clean" == "$1" ]; then
+ make distclean
+ rm -rf tmp autom4te.cache config
+ rm -f INSTALL Makefile.in aclocal.m4 configure config.h.in *.gen.c *.gen.h ChangeLog
+else
+ autoreconf --install
+ ./configure --prefix=/opt/junk
+ mkdir tmp
+ make DESTDIR=./tmp install
+ make distcheck
+fi