Fix sj3mkdic

This commit is contained in:
Nishi 2026-06-19 01:47:46 +09:00
commit 80b2181a61
19 changed files with 29 additions and 68 deletions

View file

@ -11,3 +11,13 @@ done
find lib/sj3core -name "*.obj" | while read a; do
echo "+$a"
done | xargs wlib -q -b -fo -n sj3core.lib
for i in src/sj3mkdic/*.c; do
if [ -f $i.obj ]; then
continue
fi
echo $i
owcc -Iinclude/sj3common -Iinclude/sj3core -bnt -c -o $i.obj $i || exit 1
done
owcc -bnt -o sj3mkdic.exe src/sj3mkdic/*.obj