webmcp
view Makefile.options @ 110:0c4841af07a5
String truncating by counting Unicode codepoints in format.string(...)
(grapheme cluster boundary detection not implemented)
(grapheme cluster boundary detection not implemented)
author | jbe |
---|---|
date | Sun Jan 12 03:57:47 2014 +0100 (2014-01-12) |
parents | f59adf9a6968 |
children | 30391b40722f |
line source
1 # C compiler command
2 CC = cc
4 # linker command
5 LD = ld
7 # filename extension for shared libraries
8 SLIB_EXT = so
10 # C compiler flags
11 # TODO: check alternatives to -D_GNU_SOURCE -fPIC
12 # using libtool?
13 CFLAGS = -O2 -D_GNU_SOURCE -fPIC -Wall -I /usr/include -I /usr/local/include
15 # additional C compiler flags for parts which depend on PostgreSQL
16 CFLAGS_PGSQL = -I /usr/include/postgresql -I /usr/include/postgresql/server -I /usr/local/include/postgresql -I /usr/local/include/postgresql/server
18 # linker flags
19 LDFLAGS = -shared -L /usr/lib -L /usr/local/lib
21 # additional linker flags for parts which depend on PostgreSQL
22 LDFLAGS_PGSQL =