mirror of
https://git.code.sf.net/p/fldigi/flamp
synced 2026-08-13 17:30:16 -04:00
15 lines
346 B
Bash
Executable file
15 lines
346 B
Bash
Executable file
#!/bin/sh
|
|
|
|
./configure \
|
|
$PKGCFG \
|
|
--host=i686-w64-mingw32.static \
|
|
--with-ptw32=$PREFIX/i686-w64-mingw32.static \
|
|
--enable-static \
|
|
PTW32_LIBS="-lpthread -lpcreposix -lpcre" \
|
|
FLTK_CONFIG=$PREFIX/bin/i686-w64-mingw32.static-fltk-config
|
|
|
|
make
|
|
|
|
$PREFIX/bin/i686-w64-mingw32.static-strip src/flamp.exe
|
|
make nsisinst
|
|
mv src/*setup*exe .
|