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

Makefile.inc « unix « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c76819b639d0c025ff0dd4fbb13e309c91dadbd3 (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
if HAVE_UNIX_DIR

libc_a_SOURCES += \
	%D%/getcwd.c \
	%D%/pread.c \
	%D%/pwrite.c \
	%D%/sigset.c

## Distinguish different EL/IX level interfaces
%C%_ELIX_2_SOURCES = \
	%D%/ttyname.c \
	%D%/ttyname_r.c

%C%_ELIX_4_SOURCES = \
	%D%/basename.c \
	%D%/dirname.c \
	%D%/getlogin.c \
	%D%/getpass.c \
	%D%/getpwent.c \
	%D%/getut.c

if ELIX_LEVEL_1
else
if ELIX_LEVEL_2
libc_a_SOURCES += $(%C%_ELIX_2_SOURCES)
else
if ELIX_LEVEL_3
libc_a_SOURCES += $(%C%_ELIX_2_SOURCES)
else
libc_a_SOURCES += $(%C%_ELIX_2_SOURCES) $(%C%_ELIX_4_SOURCES)
endif
endif
endif

endif