mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
9 lines
198 B
Bash
Executable file
9 lines
198 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
./configure_makefile Makefile
|
|
./configure_makefile umkMakefile
|
|
|
|
uname=`uname`
|
|
if [[ "$uname" == 'Darwin' ]]; then
|
|
sed -i.bak 's/-DflagOSX/-DflagOSX -DflagNOMM/' umkMakefile
|
|
fi
|