Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
948 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
948 serge 8
 
954 serge 9
             ../include/syscall.h	\
10
             agp.h			\
11
             pci.h        		\
12
13
 
951 serge 14
             detect.inc		\
953 serge 15
	     isoch.inc
16
948 serge 17
 
18
19
 
20
 
21
22
 
23
24
 
25
	wlink name agp.dll SYS nt_dll lib libdrv op offset=0 op nod op maxe=25 op el op STUB=stub.exe op START=_drvEntry @agp.lk
26
	kpack.exe agp.dll agp.drv
27
28
 
29
	$(CC) $(INCLUDES) $(CFLAGS) -o agp.obj agp.c
954 serge 30