CoreFW  Check-in [83b94fbdaf]

Overview
Comment:Don't always build a static lib.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 83b94fbdaf665d48c199c4753906639920265313708875fefa7e350378d8d2b6
User & Date: js on 2012-04-08 21:08:36
Other Links: manifest | tags
Context
2012-04-08
21:10
Add cfw_string_find(). check-in: 8f1f410978 user: js tags: trunk
21:08
Don't always build a static lib. check-in: 83b94fbdaf user: js tags: trunk
21:08
Fix includes in tests. check-in: 23193dc30b user: js tags: trunk
Changes

Modified src/Makefile from [7281a8448b] to [af64497e3d].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SHARED_LIB = ${LIB_PREFIX}corefw${LIB_SUFFIX}
STATIC_LIB = libcorefw.a
LIB_MAJOR = 0
LIB_MINOR = 0

SRCS = array.c	\
       class.c	\
       object.c	\
       range.c	\
       string.c

INCLUDES = ${SRCS:.c=.h} \
	   corefw.h

include ../buildsys.mk

<













1

2
3
4
5
6
7
8
9
10
11
12
13
14
SHARED_LIB = ${LIB_PREFIX}corefw${LIB_SUFFIX}

LIB_MAJOR = 0
LIB_MINOR = 0

SRCS = array.c	\
       class.c	\
       object.c	\
       range.c	\
       string.c

INCLUDES = ${SRCS:.c=.h} \
	   corefw.h

include ../buildsys.mk