Subversion Repositories Kolibri OS

Rev

Rev 1499 | Rev 1627 | 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
 
27
28
 
29
 
30
31
 
32
            $(patsubst %.c, %.o, $(NAME_SRCS))))
33
34
 
35
 
36
	ld $(LIBPATH) $(LDFLAGS) -T acpi.lds -o $@ $(NAME_OBJS) $(LIBS)
1625 serge 37
	kpack $(NAME).dll
38
1498 serge 39
 
40
	$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<
41
42
 
43
	as -o $@ $<
44
45
 
46