2025-11-07 16:52:34 +00:00
|
|
|
#!/bin/sh
|
2025-11-07 16:57:53 +00:00
|
|
|
# $Id$
|
2025-11-07 16:52:34 +00:00
|
|
|
FLAGS="-Duse_freetype2 -Duse_stb_image -Dbuild_opengl -Dbuild_vulkan"
|
|
|
|
|
|
2025-11-07 16:57:53 +00:00
|
|
|
for i in $@; do
|
2025-11-07 16:58:51 +00:00
|
|
|
case "$i" in
|
2025-11-07 16:57:53 +00:00
|
|
|
--help|-h)
|
|
|
|
|
echo "Configuration utility for Milsko Toolkit"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
|
2025-11-07 16:52:34 +00:00
|
|
|
if ! m4 $FLAGS Makefile.m4 > Makefile; then
|
|
|
|
|
echo "(M4 exited with non-zero status)"
|
|
|
|
|
rm -f Makefile
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|