flmsg/scripts/builddist.sh
David Freese 21b1305e87 fltk version change
* mods driven by update to mxe
  * modify 'version' to include VERSION_PATCH
  * update source to compile with fltk 1.3.xx
  * update fltk.m4
  * update builddist.sh buildmxe.sh
2020-04-05 09:27:07 -05:00

24 lines
435 B
Bash
Executable file

autoreconf
make clean
./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 -j 4
$PREFIX/bin/i686-w64-mingw32.static-strip src/flmsg.exe
make nsisinst
mv src/*setup*exe .
make clean
# build the distribution tarball
./configure
make distcheck
make clean