mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
7 lines
102 B
Bash
7 lines
102 B
Bash
#!/bin/sh
|
|
MAKE=make
|
|
if which gmake >/dev/null 2>&1; then
|
|
MAKE=gmake
|
|
fi
|
|
./tools/genmk.pl
|
|
$MAKE format
|