fix include path
git-svn-id: svn://kolibrios.org@6459 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
03e8146196
commit
92054a7816
@ -3,14 +3,14 @@ use32 ; Tell compiler to use 32 bit instructio
|
|||||||
|
|
||||||
section '.flat' code ; Keep this line before includes or GCC messes up call addresses
|
section '.flat' code ; Keep this line before includes or GCC messes up call addresses
|
||||||
|
|
||||||
include 'struct.inc'
|
include '../../../programs/struct.inc'
|
||||||
include 'proc32.inc'
|
include '../../../programs/proc32.inc'
|
||||||
include 'macros.inc'
|
include '../../../programs/macros.inc'
|
||||||
purge section,mov,add,sub
|
purge section,mov,add,sub
|
||||||
|
|
||||||
include 'network.inc'
|
include '../../../programs/network.inc'
|
||||||
include 'http.inc'
|
include '../../../programs/develop/libraries/http/http.inc'
|
||||||
include 'dll.inc'
|
include '../../../programs/dll.inc'
|
||||||
|
|
||||||
virtual at 0
|
virtual at 0
|
||||||
http_msg http_msg
|
http_msg http_msg
|
||||||
|
@ -4,11 +4,11 @@ use32 ; Tell compiler to use 32 bit instructio
|
|||||||
|
|
||||||
section '.init' code ; Keep this line before includes or GCC messes up call addresses
|
section '.init' code ; Keep this line before includes or GCC messes up call addresses
|
||||||
|
|
||||||
include 'proc32.inc'
|
include '../../../programs/proc32.inc'
|
||||||
include 'macros.inc'
|
include '../../../programs/macros.inc'
|
||||||
purge section,mov,add,sub
|
purge section,mov,add,sub
|
||||||
|
|
||||||
include 'dll.inc'
|
include '../../../programs/dll.inc'
|
||||||
|
|
||||||
public init_proclib as '_init_proclib_asm'
|
public init_proclib as '_init_proclib_asm'
|
||||||
;;; Returns 0 on success. -1 on failure.
|
;;; Returns 0 on success. -1 on failure.
|
||||||
|
35
contrib/C_Layer/EXAMPLE/libguic_kolibri/Makefile
Normal file
35
contrib/C_Layer/EXAMPLE/libguic_kolibri/Makefile
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user