mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 12:19:55 +00:00
e2733875e5
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@15 ea6a568a-9f4f-0410-981a-c910a81bb256
9 lines
484 B
Bash
Executable file
9 lines
484 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# See INSTALL-linux.txt for instructions
|
|
|
|
make || exit 1
|
|
|
|
gdc -Wall -Wextra -O2 -g -fversion=Posix -o openmw openmw.d core/*.d ogre/*.d nif/*.d util/*.d bsa/*.d monster/util/*.d input/*.d sound/*.d scene/*.d esm/*.d cpp_*.o -laudiere -lm -lOgreMain -lOIS -lstdc++
|
|
|
|
gdc -Wall -Wextra -O2 -g -fversion=Posix -o esmtool esmtool.d core/*.d ogre/*.d nif/*.d util/*.d bsa/*.d monster/util/*.d input/*.d sound/*.d scene/*.d esm/*.d cpp_*.o -laudiere -lm -lOgreMain -lOIS -lstdc++
|