Subversion Repositories Kolibri OS

Rev

Rev 8282 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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