mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10224 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
16 lines
497 B
Bash
Executable File
16 lines
497 B
Bash
Executable File
#!/bin/bash
|
|
# Build the Pandora Agent installer.
|
|
# The installer will be placed in ./installer/output/.
|
|
# InstallJammer must be installed and in the PATH.
|
|
|
|
ARCH=`uname -m`
|
|
if [ "$ARCH" == "x86_64" ]; then
|
|
HOST="x86_64-w64-mingw32"
|
|
else
|
|
HOST="i686-w64-mingw32"
|
|
fi
|
|
|
|
#./autogen.sh && ./configure --host=$HOST && make clean && make && cp PandoraAgent.exe bin/ && installjammer --build installer/pandora.mpi
|
|
./autogen.sh && ./configure --host=$HOST && make clean && make && cp PandoraAgent.exe bin/
|
|
|