forked from jmscott/blobio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal-linux.mk.example
47 lines (41 loc) · 1.18 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
#
# Synopsis:
# Makefile Template for typical Linux >= 2.18
# Description:
# Template for local make environment under Linux >= 2.18
#
# Examine and possbily edit the following variables:
#
# DIST_ROOT Where to install full blobio distribution;
# e.g., /usr/local/blobio for production or
# $HOME/opt/blobio for development.
#
# DIST_USER User Id of installed dist files. Typically
# 'blobio' user in production and $USER
# during development
#
# DIST_GROUP Group Id of installed dist files. Typically
# 'blobio' in both production and $USER
# for development.
#
# GODIST Where is go distribution installed.
# Redefining GOROOT is problematic, hence GODIST
#
# Usage:
# cp local-linux.mk.example local.mk
# vi local.mk
# make install
# Note:
# Initialize DIST_USER=$(USER)
#
# DIST_ROOT points to where to install entire blobio distribution.
# For example for development set DIST_ROOT to $(HOME)/opt/blobio
DIST_ROOT=/usr/local/blobio
# user/group for installed distribution dir/files
DIST_USER=$(USER)
DIST_GROUP=$(USER)
# where is go distribution installed
GODIST=/usr/local/go
# openssl 1+ installed in u
OPENSSL_INC=
OPENSSL_LIB=-lssl -lcrypto