Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.inc « search « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c28f197999ef37c915a98d2a98de392b5ce3795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
libc_a_SOURCES += \
	%D%/bsearch.c \
	%D%/db_local.h \
	%D%/extern.h \
	%D%/hash.h \
	%D%/ndbm.c \
	%D%/page.h \
	%D%/qsort.c

## Following are EL/IX level 2 interfaces
if !ELIX_LEVEL_1
libc_a_SOURCES += \
	%D%/hash.c \
	%D%/hash_bigkey.c \
	%D%/hash_buf.c \
	%D%/hash_func.c \
	%D%/hash_log2.c \
	%D%/hash_page.c \
	%D%/hcreate.c \
	%D%/hcreate_r.c \
	%D%/tdelete.c \
	%D%/tdestroy.c \
	%D%/tfind.c \
	%D%/tsearch.c \
	%D%/twalk.c
endif

## Following are EL/IX level 4 interfaces
if ELIX_LEVEL_1
else
if ELIX_LEVEL_2
else
if ELIX_LEVEL_3
else
libc_a_SOURCES += \
	%D%/bsd_qsort_r.c \
	%D%/qsort_r.c
endif !ELIX_LEVEL_3
endif !ELIX_LEVEL_2
endif !ELIX_LEVEL_1

LIBC_CHEWOUT_FILES += \
	%D%/bsearch.def \
	%D%/qsort.def \
	%D%/qsort_r.def