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 unistd 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/unistd
14
 
15
SRCS= 	fpathcon.c \
16
	pathconf.c \
17
	sysconf.c
18
 
19
OBJS=	$(patsubst %.c,%.o,$(SRCS))
20
 
21
include $(BASE)/config/sublib.mk