webmcp
view Makefile.options @ 108:08c107cc4fce
Documentation of "hide_seconds" flag for format.time and format.timestamp
| author | jbe | 
|---|---|
| date | Sun Nov 04 18:46:29 2012 +0100 (2012-11-04) | 
| 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 =
