Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8548 → Rev 8549

/programs/develop/ktcc/trunk/lib/http/make.bat
File deleted
\ No newline at end of file
/programs/develop/ktcc/trunk/lib/http/Makefile
0,0 → 1,11
FASM = fasm
 
OBJS = get.o head.o __lib__.o post.o receive.o send.o
 
%.o : %.asm
$(FASM) $<
 
all: $(OBJS)
ar -rsc libhttp.a *.o
mv -f libhttp.a ../../bin/lib
rm -f *.o
/programs/develop/ktcc/trunk/lib/http/get.asm
2,7 → 2,7
 
include "__lib__.inc"
 
fun equ get
fun equ http_get
fun_str equ 'get'
 
section '.text'
/programs/develop/ktcc/trunk/lib/http/head.asm
2,7 → 2,7
 
include "__lib__.inc"
 
fun equ head
fun equ http_head
fun_str equ 'head'
 
section '.text'
/programs/develop/ktcc/trunk/lib/http/post.asm
2,7 → 2,7
 
include "__lib__.inc"
 
fun equ post
fun equ http_post
fun_str equ 'post'
 
section '.text'
/programs/develop/ktcc/trunk/lib/http/receive.asm
2,7 → 2,7
 
include "__lib__.inc"
 
fun equ receive
fun equ http_receive
fun_str equ 'receive'
 
section '.text'
/programs/develop/ktcc/trunk/lib/http/send.asm
2,7 → 2,7
 
include "__lib__.inc"
 
fun equ send
fun equ http_send
fun_str equ 'send'
 
section '.text'