Subversion Repositories Kolibri OS

Rev

Rev 1953 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1953 mario79 1
#!/bin/bash
2
# This script does for Linux the same as build.bat for DOS,
3
# it compiles the current KolibriOS applications
4
 
5
	echo "lang fix en"
6
	echo "lang fix en" > lang.inc
7
	fasm -m 16384 opendial.asm opendial
1954 mario79 8
	kpack opendial
1953 mario79 9
	rm -f lang.inc
10
	exit 0
11