webmcp

view Makefile.options @ 43:3198806c7904

Changes of code style in webmcp.lua
author jbe
date Sat Oct 16 17:58:23 2010 +0200 (2010-10-16)
parents 5ce77ccdd550
children afed1ab1477f
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 -I /usr/local/include/lua51 -I /usr/include/lua5.1
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 -L /usr/local/lib/lua51 -L /usr/lib/lua5.1
21 # additional linker flags for parts which depend on PostgreSQL
22 LDFLAGS_PGSQL =

Impressum / About Us