-
Notifications
You must be signed in to change notification settings - Fork 1
/
project-config.jam
52 lines (44 loc) · 1.79 KB
/
project-config.jam
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
################################################################################
# #
# This file was automatically generated by build system. Do not modify it. #
# Execute bjam --configure from command line with appropriate arguments #
# instead. Execute bjam --help for more information. #
# #
################################################################################
# target system
constant TARGET_OS : linux ;
constant TARGET_LAYOUT : debian ;
# system directory names
constant DIR_USR : "usr" ;
constant DIR_BIN : "bin" ;
constant DIR_SBIN : "sbin" ;
constant DIR_LIB : "lib" ;
constant DIR_LIBEXEC : "lib" ;
constant DIR_INCLUDE : "include" ;
constant DIR_SHARE : "share" ;
constant DIR_MAN : "man" ;
constant DIR_INFO : "info" ;
constant DIR_LOCALE : "locale" ;
constant DIR_ETC : "etc" ;
constant DIR_VAR : "var" ;
constant DIR_RUN : "run" ;
constant DIR_LOCK : "lock" ;
constant DIR_LOG : "log" ;
# system paths
path-constant PATH_PREFIX : "//" ;
path-constant PATH_EXEC_PREFIX : "/usr/" ;
path-constant PATH_BIN : "/usr/bin/" ;
path-constant PATH_SBIN : "/usr/sbin/" ;
path-constant PATH_LIB : "/usr/lib/" ;
path-constant PATH_LIBEXEC : "/usr/lib/" ;
path-constant PATH_INCLUDE : "/usr/include/" ;
path-constant PATH_DATA : "/usr/share/" ;
path-constant PATH_MAN : "/usr/share/man/" ;
path-constant PATH_INFO : "/usr/share/info/" ;
path-constant PATH_LOCALE : "/usr/share/locale/" ;
path-constant PATH_SYSCONF : "/etc/" ;
path-constant PATH_LOCALSTATE : "/var/" ;
path-constant PATH_RUNTIME : "/var/run/" ;
path-constant PATH_LOCK : "/var/lock/" ;
path-constant PATH_LOG : "/var/log/" ;
# vim: set ts=2 sw=2 et: