Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6458 → Rev 6459

/contrib/C_Layer/ASM/loadhttp.asm
3,14 → 3,14
section '.flat' code ; Keep this line before includes or GCC messes up call addresses
 
include 'struct.inc'
include 'proc32.inc'
include 'macros.inc'
include '../../../programs/struct.inc'
include '../../../programs/proc32.inc'
include '../../../programs/macros.inc'
purge section,mov,add,sub
 
include 'network.inc'
include 'http.inc'
include 'dll.inc'
include '../../../programs/network.inc'
include '../../../programs/develop/libraries/http/http.inc'
include '../../../programs/dll.inc'
virtual at 0
http_msg http_msg
/contrib/C_Layer/ASM/loadproclib.asm
4,11 → 4,11
 
section '.init' code ; Keep this line before includes or GCC messes up call addresses
 
include 'proc32.inc'
include 'macros.inc'
include '../../../programs/proc32.inc'
include '../../../programs/macros.inc'
purge section,mov,add,sub
include 'dll.inc'
include '../../../programs/dll.inc'
public init_proclib as '_init_proclib_asm'
;;; Returns 0 on success. -1 on failure.
/contrib/C_Layer/EXAMPLE/libguic_kolibri/Makefile
0,0 → 1,35
NAME=boardmsg
CC = kos32-gcc
LD = kos32-ld
 
SDK_DIR:= $(abspath ../../../sdk)
CLAYER:= $(abspath ../../)
 
LDFLAGS = -static -S -nostdlib -T $(SDK_DIR)/sources/newlib/app.lds \
--image-base 0 -lgcc /home/autobuild/tools/win32/lib/libdll.a\
/home/autobuild/tools/win32/lib/libc.dll.a\
/home/autobuild/tools/win32/lib/libapp.a
 
CFLAGS = -g -U_Win32 -U_WIN32 -U__MINGW32__
 
INCLUDES= -I. -I$(SDK_DIR)/sources/newlib/libc/include -I$(CLAYER)/INCLUDE
LIBPATH:= -L $(SDK_DIR)/lib -L /home/autobuild/tools/win32/mingw32/lib
 
OBJPATH = $(CLAYER)/OBJ
 
SOURCES = boardmsg.c
 
OBJECTS = $(patsubst %.c, %.o, $(SOURCES))
 
all:$(NAME)
 
$(NAME): $(OBJECTS) Makefile
$(LD) $(LIBPATH) -o $@ $(OBJECTS) $(OBJPATH)/loadboxlib.obj $(LDFLAGS)
#-ldll -lc.dll -lapp -Map $(NAME).map
kos32-objcopy $@ -O binary
 
%.o : %.c Makefile
$(CC) -c $(INCLUDES) $(CFLAGS) -o $@ $<
 
clean:
-rm -f *.o