about summary refs log tree commit diff stats
path: root/build.sh
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-07-16 21:53:48 -0400
committerCharadon <dev@iotib.net>2022-07-16 21:53:48 -0400
commitc554c86a6ae091b15f41b97b682f574477d4bdd4 (patch)
tree0c7fdf6dd3ce7649cc08b256ea275e2db1117652 /build.sh
parentc9a15281b7328742a59c46eb3171754ce9e30bff (diff)
downloaddscip-c554c86a6ae091b15f41b97b682f574477d4bdd4.tar.gz
Removed chroot support as that's out of scope of the project
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 044a189..b520046 100755
--- a/build.sh
+++ b/build.sh
@@ -1,4 +1,12 @@
 #!/bin/sh
 
+set -eu
+
 # Insert build commands in here. #
-gmake -j4
+# If you're feeling particular paranoid, you can make it chroot here. #
+
+./configure
+make -j4
+make DESTDIR=app install
+
+exit 0