-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal-linux.mk.example
More file actions
37 lines (32 loc) · 856 Bytes
/
local-linux.mk.example
File metadata and controls
37 lines (32 loc) · 856 Bytes
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
#
# Synospsis:
# Build template for local.mk, required by global Makefile
# Usage:
# cp local-local.mk.example local.mk
# vi local.mk
# make world
# Dependencies:
# Modern golang distribution.
# C compiler. Both clang and gcc ok.
# Note:
# Is GODIST relavent for modern golang? Can we derive all from
# output of "$(GODIST)/bin/go environment" ?
#
# Where to install directory $INSTALL_PREFIX/play/.
# Default is /usr/local/jmscott/play
#
# Value may be overriden by -DINSTALL_PREFIX=...
# stable jmscott tools, need to build jmscott/play
JMSCOTT_ROOT=/usr/local/jmscott
#
# Uncomment for development version of compile.
#
#JMSCOTT_ROOT=$(HOME)/opt/jmscott
INSTALL_PREFIX?=$(JMSCOTT_ROOT)/play
#INSTALL_PREFIX?=$(HOME)/opt/jmscott/play
INSTALL_USER?=$(USER)
INSTALL_GROUP?=$(USER)
#
# Location of go executable.
#
GO=/usr/local/go/bin/go