diff options
Diffstat (limited to 'buildall.sh')
-rwxr-xr-x | buildall.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildall.sh b/buildall.sh index 734879e..f9637d7 100755 --- a/buildall.sh +++ b/buildall.sh @@ -62,13 +62,15 @@ build () { cd dos/nasm-$version LDFLAGS='-s' ./configure --host=i586-pc-msdosdjgpp $makej - find . -name \*.exe -type f -print0 | xargs -0r time upx -q --lzma --best --all-filters mv doc/nasmdoc.txt . cp $READMES/dos README cp $CWSDPMI/bin/cwsdpmi.{exe,doc} . cd .. zip -9Dl ../nasm-$version-dos.zip nasm-$version/{COPYING,README,nasmdoc.txt,cwsdpmi.doc} zip -9Drg ../nasm-$version-dos.zip nasm-$version -i \*.exe + find nasm-$version -name \*.exe -type f -print0 | xargs -0r time upx -q --lzma --best --all-filters + zip -9Dl ../nasm-$version-dos-upx.zip nasm-$version/{COPYING,README,nasmdoc.txt,cwsdpmi.doc} + zip -9Drg ../nasm-$version-dos-upx.zip nasm-$version -i \*.exe cd .. mkdir -p os2 |