-
Notifications
You must be signed in to change notification settings - Fork 1
/
local-linux.mk.example
53 lines (44 loc) · 1.34 KB
/
local-linux.mk.example
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
#
# Synopsis:
# Makefile template for typical Mac OSX >= 10.6 development environment
# Usage:
# cp local-linux.mk.example local.mk
# # edit local.mk
# make world
# Variables:
# DIST_ROOT # where setspace/ is installed
# PDFBOX_APP2_JAR # jar file for pdfbox app
# PGHOME # root of postgresql distro
# GODIST # golang distobution
# Note:
# The DASH_DNS_VHOST_SUFFIX and DASH_DNS_VHOST_PREFIX is cumbersome.
# The variables need to be collapsed into single variable DASH_DNS_VHOST.
#
# Need to rename example local-*.example with os and arch..
#
# Add comment about why GODIST is set.
#
######################## BEGIN SECTION OF VARIABLES TO CHANGE
#
DIST_ROOT?=/usr/local/setspace
#DIST_ROOT?=$(HOME)/opt/setspace
# location of pdfbox jar file, version 2
#
# Undefine to disable compiling entire pdfbox schema
#
PDFBOX_APP2_JAR?=/usr/local/lib/pdfbox-app-2.jar
# Where postgres distro lives
PGHOME?=/usr/local/pgsql
#
# Uncomment DASH_DNS_VHOST_SUFFIX if building web site
# {dash,noc,www}.setspace.com.
# Otherwise, the entire www/* directory tree is not compiled nor installed.
#
#DASH_DNS_VHOST_PREFIX=www
#DASH_DNS_VHOST_SUFFIX=com
# Location of go language distribution.
GODIST?=/usr/local/go
# location of libpcap headers and libraries
PCAPINC=/usr/include
PCAPLIB=/usr/lib
######################## END SECTION OF VARIABLES TO CHANGE