Subversion Repositories Kolibri OS

Rev

Rev 8282 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8282 Rev 8315
Line 1... Line 1...
1
all:
1
all:
2
	kos32-tcc asm_ex.c -lck -o asm_ex.kex -I ../libc/include
2
	../bin/kos32-tcc asm_ex.c -lck -o asm_ex.kex -I ../libc/include
3
	kos32-tcc consoleio.c -lck -o consoleio.kex -I ../libc/include
3
	../bin/kos32-tcc consoleio.c -lck -o consoleio.kex -I ../libc/include
4
	kos32-tcc files.c -lck -o files.kex -I ../libc/include
4
	../bin/kos32-tcc files.c -lck -o files.kex -I ../libc/include
5
	kos32-tcc winbasics.c -lck -o winbasics.kex -I ../libc/include
5
	../bin/kos32-tcc winbasics.c -lck -o winbasics.kex -I ../libc/include
6
	kos32-tcc dynamic.c -lck -lhttp -linputbox -o dynamic.kex -I ../libc/include
6
	../bin/kos32-tcc dynamic.c -lck -lhttp -linputbox -o dynamic.kex -I ../libc/include
7
	kos32-tcc load_coff.c -o load_coff.kex -lck -I ../libc/include
7
	../bin/kos32-tcc load_coff.c -o load_coff.kex -lck -I ../libc/include
8
	kos32-tcc clayer/msgbox.c  -lck -lmsgbox -o clayer/msgbox.kex -I ../libc/include
8
	../bin/kos32-tcc clayer/msgbox.c  -lck -lmsgbox -o clayer/msgbox.kex -I ../libc/include
9
	kos32-tcc graphics.c -lck -lgb -o graphics.kex -I ../libc/include
9
	../bin/kos32-tcc graphics.c -lck -lgb -o graphics.kex -I ../libc/include
10
	kos32-tcc clayer/rasterworks.c -lck -lrasterworks -o clayer/rasterworks.kex -I ../libc/include
10
	../bin/kos32-tcc clayer/rasterworks.c -lck -lrasterworks -o clayer/rasterworks.kex -I ../libc/include
11
	kos32-tcc clayer/boxlib.c -lck -lbox -o clayer/boxlib.kex -I ../libc/include
11
	../bin/kos32-tcc clayer/boxlib.c -lck -lbox -o clayer/boxlib.kex -I ../libc/include
12
	kos32-tcc clayer/libimg.c -lck -limg -o clayer/libimg.kex -I ../libc/include
12
	../bin/kos32-tcc clayer/libimg.c -lck -limg -o clayer/libimg.kex -I ../libc/include
13
	kos32-tcc console/console.c -lck -limg -o console/console.kex -I ../libc/include
13
	../bin/kos32-tcc console/console.c -lck -limg -o console/console.kex -I ../libc/include
14
	kos32-tcc dir_example.c -lck -o dir_example.kex -I ../libc/include
14
	../bin/kos32-tcc dir_example.c -lck -o dir_example.kex -I ../libc/include
-
 
15
	../bin/kos32-tcc net/tcpsrv_demo.c -lck -o net/tcpsrv_demo.kex -I ../libc/include
Line 15... Line 16...
15
 
16
 
16
clean:
17
clean:
17
	rm *.kex
18
	rm *.kex
18
	rm clayer/*.kex
19
	rm clayer/*.kex
-
 
20
	rm console/*.kex