Subversion Repositories shark

Rev

Rev 45 | Details | Compare with Previous | 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
45 pj 8
 
2 pj 9
include $(BASE)/config/config.mk
10
 
11
LIBRARY       = c
12
 
13
OBJS_PATH     = $(BASE)/libc/libio
14
 
15
SRCS=	close.c 	\
16
	dir.c		\
17
	dup.c		\
18
	dup2.c		\
19
	getcwd.c	\
20
	getumask.c	\
21
	getwd.c		\
22
	lseek.c		\
23
	read.c		\
24
	truncate.c	\
25
	umask.c	 	\
26
	unlink.c	\
27
	wrappers.c	\
28
	write.c
29
 
30
OBJS=	$(patsubst %.c,%.o,$(SRCS))
31
 
32
include $(BASE)/config/sublib.mk