webmcp

view Makefile.options @ 69:343e121178d1

Fixed error in "load" Lua5.1 compatibility
author jbe
date Sat Apr 21 19:50:25 2012 +0200 (2012-04-21)
parents afed1ab1477f
children f59adf9a6968
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 /home/flocke/opt/lua52/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 -L /home/flocke/opt/lua52/lib
21 # additional linker flags for parts which depend on PostgreSQL
22 LDFLAGS_PGSQL =

Impressum / About Us