fix include path

git-svn-id: svn://kolibrios.org@6459 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Serhii Sakhno 2016-06-30 16:20:45 +00:00
parent 03e8146196
commit 92054a7816
3 changed files with 44 additions and 9 deletions

View File

@ -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
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

View File

@ -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
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.

View 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