webmcp

annotate 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
rev   line source
jbe/bsw@0 1 # C compiler command
jbe/bsw@0 2 CC = cc
jbe/bsw@0 3
jbe/bsw@0 4 # linker command
jbe/bsw@0 5 LD = ld
jbe/bsw@0 6
jbe/bsw@0 7 # filename extension for shared libraries
jbe/bsw@0 8 SLIB_EXT = so
jbe/bsw@0 9
jbe/bsw@0 10 # C compiler flags
jbe@42 11 # TODO: check alternatives to -D_GNU_SOURCE -fPIC
jbe@42 12 # using libtool?
jbe@66 13 CFLAGS = -O2 -D_GNU_SOURCE -fPIC -Wall -I /usr/include -I /usr/local/include -I /home/flocke/opt/lua52/include
jbe/bsw@0 14
jbe/bsw@0 15 # additional C compiler flags for parts which depend on PostgreSQL
jbe/bsw@0 16 CFLAGS_PGSQL = -I /usr/include/postgresql -I /usr/include/postgresql/server -I /usr/local/include/postgresql -I /usr/local/include/postgresql/server
jbe/bsw@0 17
jbe/bsw@0 18 # linker flags
jbe@66 19 LDFLAGS = -shared -L /usr/lib -L /usr/local/lib -L /home/flocke/opt/lua52/lib
jbe/bsw@0 20
jbe/bsw@0 21 # additional linker flags for parts which depend on PostgreSQL
jbe/bsw@0 22 LDFLAGS_PGSQL =

Impressum / About Us