From 3aafbdf0c13f40636938685b1ed3641dca5ee26c Mon Sep 17 00:00:00 2001 From: schizoid Date: Fri, 6 Dec 2024 14:54:28 -0500 Subject: Updated make.sh script for both Gnu/Linux and BSD --- drw.o | Bin 14128 -> 0 bytes dwm | Bin 80752 -> 0 bytes dwm.o | Bin 73296 -> 0 bytes make.sh | 16 +++++++++++++--- util.o | Bin 2296 -> 0 bytes 5 files changed, 13 insertions(+), 3 deletions(-) delete mode 100644 drw.o delete mode 100755 dwm delete mode 100644 dwm.o mode change 100644 => 100755 make.sh delete mode 100644 util.o diff --git a/drw.o b/drw.o deleted file mode 100644 index 34857e9..0000000 Binary files a/drw.o and /dev/null differ diff --git a/dwm b/dwm deleted file mode 100755 index 95ac615..0000000 Binary files a/dwm and /dev/null differ diff --git a/dwm.o b/dwm.o deleted file mode 100644 index f4e3d61..0000000 Binary files a/dwm.o and /dev/null differ diff --git a/make.sh b/make.sh old mode 100644 new mode 100755 index 0d133cd..a5ffa69 --- a/make.sh +++ b/make.sh @@ -1,4 +1,14 @@ -#!/usr/bin/zsh +#!/bin/sh -rm config.h -make install +if command -v nproc >/dev/null 2>&1; then + cores=$(nproc) +elif command -v sysctl >/dev/null 2>&1; then + cores=$(sysctl -n hw.ncpu) +else + echo "Error: Unable to determine the number of CPU cores." + exit 1 +fi + +make clean; +yes | rm config.h; +make -j"$cores" && echo "Now run "doas make install" to install DWM" || echo "Error" diff --git a/util.o b/util.o deleted file mode 100644 index 867d783..0000000 Binary files a/util.o and /dev/null differ -- cgit v1.2.3