webmcp

view Makefile.options @ 79:3a6962b9121c

Anchor support for encode.url{...}, ui.link{...} and ui.paginate{...}
author jbe
date Wed Jun 27 18:57:53 2012 +0200 (2012-06-27)
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 =

Impressum / About Us