-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjmscott-play.mkmk
More file actions
115 lines (93 loc) · 1.95 KB
/
Copy pathjmscott-play.mkmk
File metadata and controls
115 lines (93 loc) · 1.95 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#
# Synopsis:
# Configuration for make-make program.
# See:
# https://github.com/jmscott/work/blob/master/make-make
# Note:
# Makefile variables can be extracted and defined from the the
# <package>.mkmk file with these recipes. Example make code follows:
#
# MKMK=<package>.mkmk
#
# COMPILEs := $(shell (. ./$(MKMK) && echo $$COMPILEs))
# SBINs := $(shell (. ./$(MKMK) && echo $$SBINs))
# LIBs := $(shell (. ./$(MKMK) && echo $$LIBs))
# SRCs := $(shell (. ./$(MKMK) && echo $$SRCs))
# BINs := $(shell (. ./$(MKMK) && echo $$BINs))
# HTDOCSs := $(shell (. ./$(MKMK) && echo $$HTDOCSs))
# CGIBINs := $(shell (. ./$(MKMK) && echo $$CGIBINs))
# LIBEXECs := $(shell (. ./$(MKMK) && echo $$LIBEXECs))
#
# Uncomment to override default mappings of VARs to target directory
#VAR2dir_local=(
# [CGIBINs]='cgi-bin/schema'
#)
#
#SYMLINKs="
# cgi-bin/jmscott->$JMSCOTT_ROOT/www/cgi-bin
# lib/jmscott->$JMSCOTT_ROOT/www/lib
#"
#
# Uncomment for compiled programs to be installed in bin/ or sbin/ and
# removed in "clean" recipes.
#
COMPILEs="
utf8-frisk
"
#LIBs="
#"
# Uncoment to create bin/ directory
BINs="
$COMPILEs
"
#SBINs="
#"
# Uncomment to create tmp/ directory
#TMP="
#"
# Uncomment to create cgi-bin/ directory
#CGIBINs="
#"
# Uncomment to create htdocs/ directory
#HTDOCSs="
#"
# Uncomment to create src/ directory
SRCs="
utf8-frisk.c
"
# Uncomment to create attic/ directory
#ATTIC="
#"
# Uncomment to create archive/ directory
#ARCHIVE="
#"
# Uncomment to create etc/ directory
#ETC="
#"
# Uncomment to create spool/ directory
#SPOOL="
#"
# Uncomment to create data/ directory
#DATA="
#"
# Uncomment to create run/ directory
#RUN="
#"
# Uncomment to create log/ directory
#LOG="
#"
# Uncomment to create cache/ directory
#CACHE="
#"
# Uncomment to create directory libexec/
#LIBEXECs="
#"
# Uncomment to create directory include/
#INCLUDEs="
#"
# Uncomment to create directory sync/
#SYNC="
#"
# Uncomment to create directory www/
#WWW="
#"