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