Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
1498 serge 1
 
2
FASM = e:/fasm/fasm.exe
3
4
 
5
6
 
7
8
 
9
10
 
11
12
 
13
14
 
15
16
 
17
	  --file-alignment 512 --section-alignment 4096
18
19
 
1499 serge 20
1498 serge 21
 
1625 serge 22
1498 serge 23
 
24
 
25
26
 
1627 serge 27
		scan.c		\
28
		pci_irq.c	\
29
		pci/pci.c
30
1498 serge 31
 
32
 
33
34
 
35
            $(patsubst %.c, %.o, $(NAME_SRCS))))
36
37
 
38
 
39
	ld $(LIBPATH) $(LDFLAGS) -T acpi.lds -o $@ $(NAME_OBJS) $(LIBS)
1625 serge 40
	kpack $(NAME).dll
41
1498 serge 42
 
43
	$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<
44
45
 
46
	as -o $@ $<
47
48
 
49