kolibrios/programs/network/downloader/trunk/build.sh
Marat Zakiyanov (Mario79) 97f05bd867 Downloader v0.5
1) reducing the size of the binary code,
2) program uses far less memory while running (>0x7000, the old version used >0x100000)
3) process only net event at start with parameter (URL)

git-svn-id: svn://kolibrios.org@1646 a494cfbc-eb01-0410-851d-a64ba20cac60
2010-10-07 09:38:59 +00:00

14 lines
238 B
Bash

#!/bin/bash
# This script does for linux the same as build.bat for DOS,
# it compiles the KoOS kernel, hopefully ;-)
echo "lang fix ru"
echo "lang fix ru" > lang.inc
fasm -m 16384 downloader.asm downloader
rm -f lang.inc
exit 0