Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1029 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
 
7
8
 
9
             ../../include/syscall.h	\
10
             ../../include/link.h       \
11
             ../../include/pci.h        \
12
             usb.h
13
14
 
15
	     detect.inc		\
16
	     hcd.inc		\
17
	     hid.inc
18
19
 
20
21
 
22
23
 
24
 
25
26
 
27
28
 
29
	wlink name usb.dll SYS nt_dll lib libdrv op offset=0 op nod op maxe=25 op el op STUB=stub.exe op START=_drvEntry @usb.lk
30
	kpack.exe usb.dll usb.drv
31
32
 
33
	$(CC) $(INCLUDES) $(CFLAGS) -o usb.obj usb.c
34
35
 
36
	$(CC) $(CFLAGS) -o $@ $<
37
38
 
39
	as -o $@ $<
40
41
 
42