Subversion Repositories Kolibri OS

Rev

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

Rev 3391 Rev 3482
Line -... Line 1...
-
 
1
CC = gcc
1
CC = gcc
2
AS = as
2
AS = as
3
 
Line 3... Line 4...
3
 
4
DRV_TOPDIR   = $(CURDIR)/..
4
DRV_TOPDIR   = $(CURDIR)/..
5
DRV_INCLUDES = $(DRV_TOPDIR)/include
Line 5... Line 6...
5
DRV_INCLUDES = $(DRV_TOPDIR)/include
6
 
6
 
7
INCLUDES = 	-I$(DRV_INCLUDES) -I$(DRV_INCLUDES)/linux -I$(DRV_INCLUDES)/linux/asm
7
INCLUDES = 	-I$(DRV_INCLUDES) -I$(DRV_INCLUDES)/linux -I$(DRV_INCLUDES)/linux/asm
8
DEFINES  = 	-DKOLIBRI -D__KERNEL__ -DCONFIG_X86_32 
8
DEFINES  = 	-DKOLIBRI -D__KERNEL__ -DCONFIG_X86_32 
9
CFLAGS = 	-c -Os $(INCLUDES) $(DEFINES) -march=i686 -fomit-frame-pointer -fno-builtin-printf \
Line 9... Line 10...
9
CFLAGS = 	-c -Os $(INCLUDES) $(DEFINES) -march=i586 -fomit-frame-pointer -fno-builtin-printf \
10
-mno-stack-arg-probe -mpreferred-stack-boundary=2 -mincoming-stack-boundary=2
Line 10... Line 11...
10
-mno-stack-arg-probe -mpreferred-stack-boundary=2 -mincoming-stack-boundary=2
11
 
Line 29... Line 30...
29
		linux/dmapool.c		\
30
		linux/ctype.c		\
30
		linux/ctype.c		\
31
		linux/string.c		\
31
		linux/string.c		\
32
		linux/time.c		\
32
		linux/time.c		\
33
		linux/workqueue.c	\
33
		malloc/malloc.c		\
34
		malloc/malloc.c		\
-
 
35
		stdio/vsprintf.c	\
34
		stdio/vsprintf.c	\
36
		string/_memmove.S 	\
35
		string/_memmove.S 	\
37
		string/_strncat.S 	\
36
		string/_strncat.S 	\
38
		string/_strncmp.S 	\
37
		string/_strncmp.S 	\
39
		string/_strncpy.S 	\
38
		string/_strncpy.S 	\
40
		string/_strnlen.S 	\