mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-03 16:10:50 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@618 b9cfdab3-6d41-4d17-bbe4-086880011989
18 lines
312 B
Bash
Executable File
18 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
# $Id$
|
|
FLAGS="-Duse_freetype2 -Duse_stb_image -Dbuild_opengl -Dbuild_vulkan"
|
|
|
|
for i in $@; do
|
|
case "$i" in
|
|
--help|-h)
|
|
echo "Configuration utility for Milsko Toolkit"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if ! m4 $FLAGS Makefile.m4 > Makefile; then
|
|
echo "(M4 exited with non-zero status)"
|
|
rm -f Makefile
|
|
exit 1
|
|
fi
|