Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8076 superturbo 1
all:
2
	fasm start.asm start.o
3
	kos32-gcc -c -fno-builtin shell.c
4
	kos32-gcc -c -fno-builtin system/kolibri.c
5
	kos32-gcc -c -fno-builtin system/stdlib.c
6
	kos32-gcc -c -fno-builtin system/string.c
7
	kos32-gcc -c -fno-builtin system/ctype.c
8
	kos32-ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o ctype.o shell.o
9
	kos32-objcopy shell -O binary
10
 
11
clean:
12
	rm -f *.o
13
	rm -f bin/rus/shell
14
	rm -f bin/eng/shell
15
 
16
install:
17
	cp shell $(DIR)