Subversion Repositories shark

Rev

Rev 3 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#
2
# The I/O sub-library
3
#
4
 
5
ifndef BASE
6
BASE=../..
7
endif
8
include $(BASE)/config/config.mk
9
 
10
LIBRARY       = c
11
 
12
OBJS_PATH     = $(BASE)/libc/libio
13
 
14
SRCS=	close.c 	\
15
	dir.c		\
16
	dup.c		\
17
	dup2.c		\
18
	getcwd.c	\
19
	getumask.c	\
20
	getwd.c		\
21
	lseek.c		\
22
	read.c		\
23
	truncate.c	\
24
	umask.c	 	\
25
	unlink.c	\
26
	wrappers.c	\
27
	write.c
28
 
29
OBJS=	$(patsubst %.c,%.o,$(SRCS))
30
 
31
include $(BASE)/config/sublib.mk