From 885e2ef48c2438c4f95de07ac967d4f55a0a4d49 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 3 Sep 2008 22:54:24 +0000 Subject: Produce both UPX:ed and non-UPX:ed versions of the DOS binaries --- buildall.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit