mirror of
https://github.com/NishiOwO/fvwm1.git
synced 2025-04-21 00:34:40 +00:00
10 lines
231 B
Bash
Executable File
10 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
count=`grep processor /proc/cpuinfo | wc -l | sed "s/ //g"`
|
|
if [ "$count" = "0" ]; then
|
|
count=4
|
|
fi
|
|
which xmkmf || exit 1
|
|
export IMAKECPP="`which gcpp || which cpp13 || which cpp`"
|
|
xmkmf -a
|
|
make -j$count || exit 1
|