mirror of
https://git.code.sf.net/p/fldigi/flmsg
synced 2026-08-13 17:30:58 -04:00
* removed
- scripts/build4mingw.sh
- scripts/build4mxe.sh
- scripts/config4mingw.sh
* added
- scripts/buildmxe.sh
19 lines
389 B
Bash
Executable file
19 lines
389 B
Bash
Executable file
#!/bin/sh
|
|
|
|
### Script to build a win32 installation
|
|
|
|
./configure \
|
|
$PKGCFG \
|
|
$CROSSCFG \
|
|
--with-ptw32=$PREFIX/i686-w64-mingw32.static \
|
|
--enable-static \
|
|
PTW32_LIBS="-lpthread -lpcreposix -lpcre -lregex" \
|
|
FLTK_CONFIG=$PREFIX/bin/i686-w64-mingw32.static-fltk-config \
|
|
|
|
make clean
|
|
|
|
make
|
|
$PREFIX/bin/i686-w64-mingw32.static-strip src/flmsg.exe
|
|
|
|
make nsisinst
|
|
mv src/*setup*exe .
|