1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
autoreconf
# build Windows installation file
./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 clean
make -j 4
$PREFIX/bin/i686-w64-mingw32.static-strip src/flmsg.exe
make nsisinst
mv src/*setup*exe .
# build the distribution tarball
./configure
make clean
make distcheck
make clean
|