Subversion Repositories Kolibri OS

Rev

Rev 818 | 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
 
877 serge 7
             syscall.h    	\
8
             pci.h        	\
9
             accel_2d.h   	\
10
             r5xx_regs.h 	\
11
             microcode.h
818 serge 12
13
 
877 serge 14
             pci.c              \
15
             ati_mem.c       	\
16
             r500.inc           \
818 serge 17
             pixmap.inc		\
877 serge 18
             accel_2d.inc  	\
19
             accel_3d.inc
818 serge 20
21
 
877 serge 22
818 serge 23
 
24
25
 
26
 
27
            $(patsubst %.c, %.obj, $(ATI_SRC))))
28
29
 
30
 
31
32
 
33
34
 
35
	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 36
	kpack.exe ati2d.dll ati2d.drv
818 serge 37
38
 
39
	$(CC) $(CFLAGS) -o ati2d.obj ati2d.c
40
41
 
42
	$(FASM) curhelp.asm
43
44
 
45
	$(CC) $(CFLAGS) -o $@ $<
46
47
 
48
	as -o $@ $<
49
50
 
51