Overview
Comment: | Install includes. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
526bfbdcdc4cc52f42baacf6de61b0f9 |
User & Date: | js on 2012-04-08 19:02:11 |
Other Links: | manifest | tags |
Context
2012-04-08
| ||
19:05 | Add cfw_class_name(). check-in: 07a4b94e52 user: js tags: trunk | |
19:02 | Install includes. check-in: 526bfbdcdc user: js tags: trunk | |
18:45 | New array functions. check-in: 13e46a72ba user: js tags: trunk | |
Changes
Modified configure.ac from [5550f80cf3] to [6ef842f2e8].
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(corefw, 0.1, js@webkeks.org) AC_CONFIG_SRCDIR(src) AC_CANONICAL_HOST AC_PROG_CC AC_PROG_CPP AC_CHECK_TOOL(AR, ar) |
︙ | ︙ |
Modified src/Makefile from [d4c5d7911a] to [833709b5a3].
1 2 3 4 5 6 7 8 9 10 | SHARED_LIB = ${LIB_PREFIX}corefw${LIB_SUFFIX} STATIC_LIB = libcorefw.a LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = cfwarray.c \ cfwobject.c \ cfwstring.c include ../buildsys.mk | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | SHARED_LIB = ${LIB_PREFIX}corefw${LIB_SUFFIX} STATIC_LIB = libcorefw.a LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = cfwarray.c \ cfwobject.c \ cfwstring.c INCLUDES = ${SRCS:.c=.h} \ cfwclass.h include ../buildsys.mk |