File:  [Local Repository] / froggix / build-win32.sh
Revision 1.1: download - view: text, annotated - select for diffs
Sat Mar 28 03:52:29 2009 UTC (15 years, 1 month ago) by nick
Branches: MAIN
CVS tags: HEAD
Should be the final files for setting up the cross compilation

#!/bin/sh
# $Id: build-win32.sh,v 1.1 2009/03/28 03:52:29 nick Exp $

PROGNAME=froggix

if !(./cross-configure.sh) then exit 1; fi
./cross-make.sh clean
./cross-make.sh
if test $? -ne 0; then exit 1; fi
test -w src/$PROGNAME && chmod -x src/$PROGNAME
test -w src/$PROGNAME && mv src/$PROGNAME src/$PROGNAME.exe

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>