-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.options
65 lines (52 loc) · 1.37 KB
/
Makefile.options
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Included by Makefile
#
# NOTE: You may also pass the following variables on
# make's command line or set them as environment
# variables.
# Directory, e.g. /usr/include, /usr/include/lua5.4,
# or /usr/local/include/lua54 where Lua's header files
# (e.g. lua.h) reside:
#
#LUA_INCDIR = /usr/include
# Name of lua library, e.g. lua or lua5.4:
#
#LUA_LIBNAME = lua
# Directory, e.g. /usr/include or /usr/local/include,
# where PostgreSQL's header files (e.g. libpq-fe.h)
# reside:
#
#PGSQL_INCDIR = /usr/include
# Directory, e.g. /usr/lib, /usr/local/lib, or
# /usr/lib/x86_64-linux-gnu where PostrgreSQL library
# files reside:
#
#PGSQL_LIBDIR = /usr/lib
# Name of PostgreSQL's client library, e.g. pq:
#
#PGSQL_LIBNAME = pq
# Directory, e.g. /usr/include or /usr/local/include,
# where libkqueue's header files (e.g. sys/event.h)
# reside:
#
#KQUEUE_INCDIR = /usr/include
# Directory, e.g. /usr/lib or /usr/local/lib where
# libkqueue's library files reside:
#
#KQUEUE_LIBDIR = /usr/lib
# Name of kqueue library, e.g. kqueue or empty if no
# library is needed:
#
#KQUEUE_LIBNAME =
#KQUEUE_LIBNAME = kqueue
# Name of Lua command, e.g. lua:
#
#LUA_CMD = lua
# Name of C-compiler command, e.g. cc:
#
#CC = cc
# C-compiler arguments for linking shared libraries:
#
#CC_LINK_LIB_ARGS = -shared -Wall
# C-compiler arguments for compiling object files:
#
#CC_COMPILE_OBJ_ARGS = -c -Wall -O2 -fPIC