Files
flenser/rebuild
ADAM David Alan Martin fda0baa552 Merge branch 'icon' into master
* icon:
  A bit more tweaking to try to get the icon to work.
  Add new icon.

 Conflicts:
	rebuild
2025-05-31 08:38:59 -04:00

13 lines
289 B
Bash
Executable File

#!/usr/bin/env bash
processor_count=`grep -c "^processor" /proc/cpuinfo`
count=$((${processor_count} - 1))
echo "Detected ${processor_count} processors, using ${count}"
make distclean
pushd ..
./autogen.sh
popd
../configure --prefix=/usr --enable-ipv6 CXXFLAGS="-O0 -g"
make -kj${count}