aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/BuildIt.sh
diff options
context:
space:
mode:
authoronefang2020-03-16 14:45:30 +1000
committeronefang2020-03-16 14:45:30 +1000
commit204a0ea6a57d82e485ea4fbad50d51892d0246fa (patch)
treef4e4577008cdd8423393e8e823c561535ba70ce7 /BuildIt.sh
parentAdd a bunch of test key bindings. (diff)
downloadopensim-SC_OLD-204a0ea6a57d82e485ea4fbad50d51892d0246fa.zip
opensim-SC_OLD-204a0ea6a57d82e485ea4fbad50d51892d0246fa.tar.gz
opensim-SC_OLD-204a0ea6a57d82e485ea4fbad50d51892d0246fa.tar.bz2
opensim-SC_OLD-204a0ea6a57d82e485ea4fbad50d51892d0246fa.tar.xz
Add a build script.
Diffstat (limited to '')
-rwxr-xr-xBuildIt.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/BuildIt.sh b/BuildIt.sh
new file mode 100755
index 0000000..fdcb747
--- /dev/null
+++ b/BuildIt.sh
@@ -0,0 +1,33 @@
1#!/bin/bash
2
3# Poor mans git sub modules / subtrees, coz otherwise it gets complex.
4if [ ! -d src/git-sub-modules/toybox ]; then
5 pushd src/git-sub-modules
6 git clone https://github.com/landley/toybox.git
7 popd
8else
9 pushd src/git-sub-modules/toybox
10 git pull
11 popd
12fi
13
14pushd src/git-sub-modules/toybox
15#git stash save
16#git pull
17#git stash pop
18popd
19
20mkdir -p build
21rm -fr build/toybox
22cp -r src/git-sub-modules/toybox build/
23ln -fs ../../../src/boxes build/toybox/toys/boxes
24ln -fs ../toys/boxes/handlekeys.c build/toybox/lib
25ln -fs ../toys/boxes/handlekeys.h build/toybox/lib
26
27pushd build/toybox >/dev/null
28make clean
29#make defconfig
30##make menuconfig
31make allnoconfig KCONFIG_ALLCONFIG=../../miniconfig || exit 1
32make || exit 1
33popd >/dev/null