diff buildsys/lua/bootstrap.sh @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildsys/lua/bootstrap.sh	Thu Mar 19 22:24:28 2015 +0100
@@ -0,0 +1,34 @@
+#!/bin/sh
+if [ -z "${DL}" ]; then
+  DL=wget
+fi
+case `uname -s` in
+  Darwin)
+    LPLAF=macosx
+    ;;
+  Linux)
+    LPLAF=linux
+    ;;
+  FreeBSD)
+    LPLAF=freebsd
+    ;;
+  SunOS)
+    LPLAF=solaris
+    ;;
+  AIX)
+    LPLAF=aix
+    ;;
+  DragonFly)
+    LPLAF=bsd
+    ;;
+  *BSD)
+    LPLAF=bsd
+    ;;
+  *)
+    LPLAF=posix
+    ;;
+esac
+DL="${DL}" make -f `dirname $0`/Makefile lua-5.1.4
+(cd lua-5.1.4; make ${LPLAF})
+
+