Subversion Repositories Kolibri OS

Rev

Rev 885 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
818 serge 1
 
2
FASM = e:/fasm/fasm.exe
3
CFLAGS = -c -O2 -fomit-frame-pointer -fno-builtin-printf
4
LDRHD  = -shared -T ld.x -s --file-alignment 32
5
6
 
954 serge 7
8
 
9
             ../include/syscall.h	\
10
             ati2d.h      		\
11
             pci.h        		\
12
             accel_2d.h   		\
13
             r5xx_regs.h 		\
14
             radeon_microcode.h
885 serge 15
818 serge 16
 
877 serge 17
             pci.c              \
18
             ati_mem.c       	\
19
	     init_cp.c		\
885 serge 20
             init_3d.inc        \
21
             blend.inc          \
22
             r500.inc           \
818 serge 23
             pixmap.inc		\
877 serge 24
             accel_2d.inc  	\
25
             accel_3d.inc
818 serge 26
27
 
877 serge 28
818 serge 29
 
30
31
 
32
 
33
            $(patsubst %.c, %.obj, $(ATI_SRC))))
34
35
 
36
 
37
38
 
39
40
 
41
	wlink name ati2d.dll SYS nt_dll lib libdrv op offset=0 op nod op maxe=25 op el op STUB=stub.exe op START=_drvEntry @rhd.lk1
877 serge 42
	kpack.exe ati2d.dll ati2d.drv
818 serge 43
44
 
879 serge 45
	$(CC) $(INCLUDES) $(CFLAGS) -o ati2d.obj ati2d.c
954 serge 46
818 serge 47
 
48
	$(FASM) curhelp.asm
49
50
 
51
	$(CC) $(CFLAGS) -o $@ $<
52
53
 
54
	as -o $@ $<
55
56
 
57