8 lines
193 B
Text
8 lines
193 B
Text
|
|
#!/bin/sh
|
||
|
|
FLAGS="-Duse_freetype2 -Duse_stb_image -Dbuild_opengl -Dbuild_vulkan"
|
||
|
|
|
||
|
|
if ! m4 $FLAGS Makefile.m4 > Makefile; then
|
||
|
|
echo "(M4 exited with non-zero status)"
|
||
|
|
rm -f Makefile
|
||
|
|
exit 1
|
||
|
|
fi
|