-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathINSTALL
More file actions
46 lines (29 loc) · 1.1 KB
/
Copy pathINSTALL
File metadata and controls
46 lines (29 loc) · 1.1 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
1. General
MaKL template libraries (i.e. mk and cf modules) will be placed into
"${prefix}/share/makl-${MAKL_VERSION}". The 'maklsh' executable and its
children symlinks ('makl', 'makl-conf', 'makl-tc' and 'makl-help') will
go into "${prefix}/bin"
Add "${prefix}/bin" , if needed, to your PATH env variable in order to be
able using the 'makl'* commands.
2. Platform specific
a. Linux, Darwin, MacOSX
$ /bin/sh configure.sh [--prefix=...]
# make install
b. Solaris, OpenSolaris
$ /usr/xpg4/bin/sh configure.sh [--prefix=...]
# /usr/sfw/bin/gmake SHELL=/usr/xpg4/bin/sh install
c. FreeBSD, PC-BSD, OpenBSD
$ /bin/sh configure.sh [--prefix=...]
# /usr/local/bin/gmake install
d. NetBSD, DragonflyBSD
$ /bin/sh configure.sh [--prefix=...]
# /usr/pkg/bin/gmake install
e. Windows MinGW
$ /bin/sh configure.sh [--prefix=...]
# /bin/make install
f. Windows Cygwin
$ /usr/bin/sh configure.sh [--prefix=...]
# /usr/bin/make install
g. Minix
$ /usr/pkg/bin/bash configure.sh [...]
# /usr/pkg/bin/gmake SHELL=/usr/pkg/bin/bash install