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

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

libc_a_SOURCES += \
	%D%/sysclose.c \
	%D%/sysfcntl.c \
	%D%/sysfstat.c \
	%D%/sysgetentropy.c \
	%D%/sysgetpid.c \
	%D%/sysgettod.c \
	%D%/sysisatty.c \
	%D%/syskill.c \
	%D%/syslink.c \
	%D%/syslseek.c \
	%D%/sysopen.c \
	%D%/sysread.c \
	%D%/syssbrk.c \
	%D%/sysstat.c \
	%D%/systimes.c \
	%D%/sysunlink.c \
	%D%/syswrite.c

## Weed out EL/IX level 3 interfaces if necessary
if ELIX_LEVEL_1
else
if ELIX_LEVEL_2
else
libc_a_SOURCES += \
	%D%/sysexecve.c \
	%D%/sysfork.c \
	%D%/syswait.c
endif
endif

endif