Subversion Repositories Kolibri OS

Rev

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

Rev 1125 Rev 1126
Line 2... Line 2...
2
FASM = e:/fasm/fasm.exe
2
FASM = e:/fasm/fasm.exe
3
CFLAGS = -c -O2 -fomit-frame-pointer -fno-builtin-printf 
3
CFLAGS = -c -O2 -fomit-frame-pointer -fno-builtin-printf 
4
LDFLAGS = -nostdlib -shared -s -Map atikms.map --image-base 0 --file-alignment 512 --section-alignment 4096
4
LDFLAGS = -nostdlib -shared -s -Map atikms.map --image-base 0 --file-alignment 512 --section-alignment 4096
5
 
5
 
Line -... Line 6...
-
 
6
 
6
DRM_TOPDIR   = $(CURDIR)/..
7
DRM_TOPDIR   = $(CURDIR)/..
7
DRM_INCLUDES = $(DRM_TOPDIR)/include
8
DRM_INCLUDES = $(DRM_TOPDIR)/include
Line 8... Line 9...
8
 
9
 
Line 36... Line 37...
36
			$(DRM_TOPDIR)/drm_crtc_helper.c		\
37
			$(DRM_TOPDIR)/drm_crtc_helper.c		\
37
			$(DRM_TOPDIR)/i2c/i2c-core.c		\
38
			$(DRM_TOPDIR)/i2c/i2c-core.c		\
38
			$(DRM_TOPDIR)/i2c/i2c-algo-bit.c	\
39
			$(DRM_TOPDIR)/i2c/i2c-algo-bit.c	\
39
			$(DRM_TOPDIR)/idr.c			\
40
			$(DRM_TOPDIR)/idr.c			\
40
			radeon_device.c			\
41
			radeon_gem.c				\
-
 
42
			radeon_device.c				\
41
			radeon_clocks.c			\
43
			radeon_clocks.c				\
42
			radeon_i2c.c				\
44
			radeon_i2c.c				\
43
			atom.c					\
45
			atom.c					\
44
			radeon_atombios.c		\
46
			radeon_atombios.c			\
45
			atombios_crtc.c				\
47
			atombios_crtc.c				\
Line 55... Line 57...
55
			radeon_ring.c			\
57
			radeon_ring.c				\
56
			r100.c				\
58
			r100.c					\
57
			r300.c				\
59
			r300.c					\
58
			rv515.c				\
60
			rv515.c					\
59
			r520.c
61
			r520.c					\
60
 
62
			radeon_fb.c
-
 
63
 
Line 61... Line 64...
61
 
64