Subversion Repositories Kolibri OS

Rev

Rev 6109 | Rev 6536 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6109 Rev 6312
Line 1... Line 1...
1
CC = kos32-gcc
1
CC = kos32-gcc
2
AR = kos32-ar
2
AR = kos32-ar
3
LD = kos32-ld
3
LD = kos32-ld
Line 4... Line 4...
4
 
4
 
5
CFLAGS = -c -O2 -fno-ident -fomit-frame-pointer -fexceptions -DBUILD_DLL -DMISSING_SYSCALL_NAMES
5
CFLAGS = -c -O2 -fno-ident -fomit-frame-pointer -fexceptions -DMISSING_SYSCALL_NAMES
6
LDFLAGS = -shared -s -T libcdll.lds --out-implib libc.dll.a --image-base 0
6
LDFLAGS = -shared -s -T libcdll.lds --out-implib libc.dll.a --image-base 0
7
#LDFLAGS+= --output-def libc.orig.def
7
#LDFLAGS+= --output-def libc.orig.def
Line 8... Line 8...
8
ARFLAGS = crs
8
ARFLAGS = crs
Line 13... Line 13...
13
LIBC_INCLUDES = $(LIBC_TOPDIR)/include
13
LIBC_INCLUDES = $(LIBC_TOPDIR)/include
14
 
14
 
Line 15... Line 15...
15
NAME:=	  libc
15
NAME:=	  libc
Line 16... Line 16...
16
 
16
 
Line 17... Line 17...
17
DEFINES:= -D_IEEE_LIBM -DHAVE_RENAME
17
DEFINES:= -D_IEEE_LIBM -DHAVE_RENAME -DBUILD_LIBC
Line 18... Line 18...
18
 
18