Subversion Repositories Kolibri OS

Rev

Rev 9959 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9959 Rev 9989
Line 98... Line 98...
98
  "sys/access.c",
98
  "sys/access.c",
99
  "sys/clock_gettime.c",
99
  "sys/clock_gettime.c",
100
  "sys/close.c",
100
  "sys/close.c",
101
  "sys/conio.c",
101
  "sys/conio.c",
102
  "sys/chdir.c",
102
  "sys/chdir.c",
103
  "sys/getcwd.c",
-
 
104
  "sys/errno.c",
103
  "sys/errno.c",
105
  "sys/fstat.c",
104
  "sys/fstat.c",
106
  "sys/gettod.c",
105
  "sys/gettod.c",
107
  "sys/io.c",
106
  "sys/io.c",
108
  "sys/ioread.c",
107
  "sys/ioread.c",
Line 305... Line 304...
305
  "wcwidth.c",
304
  "wcwidth.c",
306
  "wmemchr.c",
305
  "wmemchr.c",
307
  "wmemcmp.c",
306
  "wmemcmp.c",
308
  "wmemcpy.c",
307
  "wmemcpy.c",
309
  "wmemmove.c",
308
  "wmemmove.c",
310
  "wmemset.c",
309
  "wmemset.c"
311
  "dirname.c"
-
 
312
}
310
}
Line 313... Line 311...
313
 
311
 
314
STDIO_SRCS = {
312
STDIO_SRCS = {
315
  "asiprintf.c",
313
  "asiprintf.c",
Line 453... Line 451...
453
  "wbuf.c",
451
  "wbuf.c",
454
  "wprintf.c",
452
  "wprintf.c",
455
  "wscanf.c",
453
  "wscanf.c",
456
  "wsetup.c"
454
  "wsetup.c"
457
}
455
}
-
 
456
 
458
POSIX_SRCS = {
457
POSIX_SRCS = {
459
  "opendir.c",
458
  "opendir.c",
460
  "closedir.c",
459
  "closedir.c",
461
  "readdir.c",
460
  "readdir.c",
462
  "seekdir.c",
461
  "seekdir.c",
463
  "telldir.c",
462
  "telldir.c",
464
  "rewinddir.c"
463
  "rewinddir.c"
465
}
464
}
Line -... Line 465...
-
 
465
 
-
 
466
UNIX_SRCS = {
-
 
467
  "getcwd.c",
-
 
468
  "dirname.c",
-
 
469
  "basename.c"
-
 
470
}
466
 
471
 
467
MATH_SRCS = {
472
MATH_SRCS = {
468
  "e_acos.c", "e_acosh.c", "e_asin.c", "e_atan2.c", "e_atanh.c", "e_cosh.c", "e_exp.c", "e_fmod.c",
473
  "e_acos.c", "e_acosh.c", "e_asin.c", "e_atan2.c", "e_atanh.c", "e_cosh.c", "e_exp.c", "e_fmod.c",
469
  "e_hypot.c", "e_j0.c", "e_j1.c", "e_jn.c", "e_log.c", "e_log10.c", "e_pow.c", "e_rem_pio2.c",
474
  "e_hypot.c", "e_j0.c", "e_j1.c", "e_jn.c", "e_log.c", "e_log10.c", "e_pow.c", "e_rem_pio2.c",
470
  "e_remainder.c", "e_scalb.c", "e_sinh.c", "e_sqrt.c", "ef_acos.c", "ef_acosh.c", "ef_asin.c",
475
  "e_remainder.c", "e_scalb.c", "e_sinh.c", "e_sqrt.c", "ef_acos.c", "ef_acosh.c", "ef_asin.c",
Line 514... Line 519...
514
LIB_SRCS += CORE_SRCS
519
LIB_SRCS += CORE_SRCS
515
LIB_SRCS += prepend("stdio/", STDIO_SRCS)
520
LIB_SRCS += prepend("stdio/", STDIO_SRCS)
516
LIB_SRCS += prepend("string/", STRING_SRCS)
521
LIB_SRCS += prepend("string/", STRING_SRCS)
517
LIB_SRCS += prepend("stdlib/", STDLIB_SRCS)
522
LIB_SRCS += prepend("stdlib/", STDLIB_SRCS)
518
LIB_SRCS += prepend("posix/", POSIX_SRCS)
523
LIB_SRCS += prepend("posix/", POSIX_SRCS)
-
 
524
LIB_SRCS += prepend("unix/", UNIX_SRCS)
519
LIB_SRCS += prepend("math/", MATH_SRCS)
525
LIB_SRCS += prepend("math/", MATH_SRCS)
Line 520... Line 526...
520
 
526
 
521
ALL_OBJS = {}
527
ALL_OBJS = {}
522
function compile(list)
528
function compile(list)