Changeset 3889
- Timestamp:
- Jun 28, 2014, 6:06:20 PM (11 years ago)
- Location:
- trunk/libc/src
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/src/libc/math/Makefile.kmk
r3872 r3889 37 37 $(PATH_LIBC_SRC)/libc/math/cabsl.c \ 38 38 $(PATH_LIBC_SRC)/libc/math/carg.c \ 39 $(PATH_LIBC_SRC)/libc/math/cargf.c \ 39 40 $(PATH_LIBC_SRC)/libc/math/cargl.c \ 40 41 $(PATH_LIBC_SRC)/libc/math/nan.c \ -
trunk/libc/src/libc/math/cabsl.c
r3873 r3889 1 1 /* $Id$ */ 2 2 /** @file 3 * Implementation of cabsl().3 * kLibC - Implementation of cabsl(). 4 4 * 5 5 * @copyright Copyright (C) 2004-2014 knut st. osmundsen <bird-klibc-spam-xiv@anduin.net> 6 * @licenses MIT, BSD2, BSD3, BSD4, LGPLv2.1, LGPLv3 .6 * @licenses MIT, BSD2, BSD3, BSD4, LGPLv2.1, LGPLv3, LGPLvFuture. 7 7 */ 8 8 -
trunk/libc/src/libc/math/carg.c
r3873 r3889 1 1 /* $Id$ */ 2 2 /** @file 3 * Implementation of carg().3 * kLibC - Implementation of carg(). 4 4 * 5 5 * @copyright Copyright (C) 2004-2014 knut st. osmundsen <bird-klibc-spam-xiv@anduin.net> 6 * @licenses MIT, BSD2, BSD3, BSD4, LGPLv2.1, LGPLv3 .6 * @licenses MIT, BSD2, BSD3, BSD4, LGPLv2.1, LGPLv3, LGPLvFuture. 7 7 */ 8 8 -
trunk/libc/src/libc/math/cargl.c
r3873 r3889 1 1 /* $Id$ */ 2 2 /** @file 3 * Implementation of cargl().3 * kLibC - Implementation of cargl(). 4 4 * 5 5 * @copyright Copyright (C) 2004-2014 knut st. osmundsen <bird-klibc-spam-xiv@anduin.net> 6 * @licenses MIT, BSD2, BSD3, BSD4, LGPLv2.1, LGPLv3 .6 * @licenses MIT, BSD2, BSD3, BSD4, LGPLv2.1, LGPLv3, LGPLvFuture. 7 7 */ 8 8 -
trunk/libc/src/libc/str/Makefile.kmk
r3845 r3889 56 56 $(PATH_LIBC_SRC)/libc/str/_strncpy.c \ 57 57 58 ifndef CFG_LIBC_USE_WATCOM 58 59 libc_libc_str_SOURCES.x86 = \ 59 60 $(PATH_LIBC_SRC)/libc/str/386/bcmp.s \ … … 87 88 $(PATH_LIBC_SRC)/libc/str/386/wmemmove.s \ 88 89 $(PATH_LIBC_SRC)/libc/str/386/wmemset.s \ 89 $(PATH_LIBC_SRC)/libc/str/386/_memcpy_amd.s \ 90 $(PATH_LIBC_SRC)/libc/str/386/_memcpy_amd.s 91 endif 90 92 91 93 # configure the variants. */ -
trunk/libc/src/libos2/Makefile.kmk
r3845 r3889 38 38 libos2_DEFS = NO_INCL_SAFE_HIMEM_WRAPPERS 39 39 libos2_SOURCES := \ 40 $(wildcard $(PATH_LIBC_SRC)/libos2/*.c) \41 40 $(wildcard $(PATH_LIBC_SRC)/libos2/safe/*.c) \ 42 41 $(wildcard $(PATH_LIBC_SRC)/libos2/*.imp) 42 ifndef CFG_LIBC_USE_WATCOM 43 libos2_SOURCES += \ 44 $(wildcard $(PATH_LIBC_SRC)/libos2/*.c) 45 endif 46 43 47 44 48 # configure the variants. */ 45 49 $(call LIBC_CONFIG_VARIANT_LIBS_OTHER,libos2) 46 50 51 ifndef CFG_LIBC_USE_WATCOM 47 52 # 48 53 # Lazy libs. … … 141 146 $(filter-out %-data.imp,$(wildcard $(PATH_LIBC_SRC)/libos2/*.imp)) 142 147 148 endif # No lazy libs with watcom, not yet at least. 143 149 endif # BUILD_TARGET == os2 144 150 # generate rules
Note:
See TracChangeset
for help on using the changeset viewer.