1 |
|
---|
2 |
|
---|
3 | PATH_INS := $(PATH_OUT)/dist
|
---|
4 |
|
---|
5 | #
|
---|
6 | # The /bin templates.
|
---|
7 | #
|
---|
8 | TEMPLATE_bin = /bin/ programs.
|
---|
9 | TEMPLATE_bin_TOOL = GCC3
|
---|
10 | TEMPLATE_bin_TOOL.os2 = GCC3OMF
|
---|
11 | TEMPLATE_bin_INST = bin/
|
---|
12 |
|
---|
13 | #
|
---|
14 | # The /usr/bin templates.
|
---|
15 | #
|
---|
16 | TEMPLATE_usr.bin = /usr/bin/ programs.
|
---|
17 | TEMPLATE_usr.bin_TOOL = GCC3
|
---|
18 | TEMPLATE_usr.bin_TOOL.os2 = GCC3OMF
|
---|
19 | TEMPLATE_usr.bin_INST = usr/bin/
|
---|
20 |
|
---|
21 | TEMPLATE_usr.bin.script = /usr/bin/ scripts
|
---|
22 | TEMPLATE_usr.bin.script_INST = usr/bin/
|
---|
23 |
|
---|
24 | TEMPLATE_usr.bin.doc = /usr/bin/ program documentation.
|
---|
25 | # 1: source 2: target 3: _INST 4: default ins path
|
---|
26 | TEMPLATE_usr.bin.doc_INSTFUN = $(4)/usr/doc/$(subst .doc,,$(2))/$(notdir $(1))
|
---|
27 |
|
---|
28 | TEMPLATE_usr.bin.man = /usr/bin/ program manual page
|
---|
29 | # 1: source 2: target 3: _INST 4: default ins path
|
---|
30 | TEMPLATE_usr.bin.man_INSTFUN = $(4)/usr/man/man$(notdir $(subst .,/,$(1)))/$(notdir $(1)).gz
|
---|
31 | # 1: source 2: destination, 3: target
|
---|
32 | TEMPLATE_usr.bin.man_INSTALLER = gzip -9 -c $(1) > $(2)
|
---|
33 |
|
---|
34 | #
|
---|
35 | # The /usr/sbin templates.
|
---|
36 | #
|
---|
37 | TEMPLATE_usr.sbin = /usr/sbin/ programs.
|
---|
38 | TEMPLATE_usr.sbin_TOOL = GCC3
|
---|
39 | TEMPLATE_usr.sbin_TOOL.os2 = GCC3OMF
|
---|
40 | TEMPLATE_usr.sbin_INST = usr/sbin/
|
---|
41 |
|
---|
42 | TEMPLATE_usr.sbin.script = /usr/sbin/ scripts
|
---|
43 | TEMPLATE_usr.sbin.script_INST = usr/sbin/
|
---|
44 |
|
---|
45 | TEMPLATE_usr.sbin.doc = /usr/bin/ program documentation.
|
---|
46 | # 1: source 2: target 3: _INST 4: default ins path
|
---|
47 | TEMPLATE_usr.sbin.doc_INSTFUN = $(4)/usr/doc/$(subst .doc,,$(2))/$(notdir $(1))
|
---|
48 |
|
---|
49 | TEMPLATE_usr.sbin.man = /usr/bin/ program manual page
|
---|
50 | # 1: source 2: target 3: _INST 4: default ins path
|
---|
51 | TEMPLATE_usr.sbin.man_INSTFUN = $(4)/usr/man/man$(notdir $(subst .,/,$(1)))/$(notdir $(1)).gz
|
---|
52 | # 1: source 2: destination, 3: target
|
---|
53 | TEMPLATE_usr.sbin.man_INSTALLER = gzip -9 -c $(1) > $(2)
|
---|
54 |
|
---|
55 |
|
---|
56 | #
|
---|
57 | # The /usr/include templates.
|
---|
58 | #
|
---|
59 | TEMPLATE_usr.include = /usr/include/ headers
|
---|
60 | TEMPLATE_usr.include_INST = usr/include/
|
---|
61 |
|
---|
62 | TEMPLATE_usr.include.sys = /usr/include/sys/ headers
|
---|
63 | TEMPLATE_usr.include.sys_INST = usr/include/sys/
|
---|
64 |
|
---|
65 |
|
---|
66 | #
|
---|
67 | # The /usr/lib templates.
|
---|
68 | #
|
---|
69 | TEMPLATE_usr.lib = /usr/bin/ libraries.
|
---|
70 | TEMPLATE_usr.lib_TOOL = GCC3
|
---|
71 | TEMPLATE_usr.lib_TOOL.os2 = GCC3OMF
|
---|
72 | TEMPLATE_usr.lib_INST = usr/lib/
|
---|
73 |
|
---|
74 | TEMPLATE_usr.lib.nasm = /usr/bin/ libraries using nasm as assembler.
|
---|
75 | TEMPLATE_usr.lib.nasm_TOOL = GCC3
|
---|
76 | TEMPLATE_usr.lib.nasm_TOOL.os2 = GCC3OMF
|
---|
77 | TEMPLATE_usr.lib.nasm_ASTOOL = NASM
|
---|
78 | TEMPLATE_usr.lib.nasm_ASTOOL = NASM
|
---|
79 | TEMPLATE_usr.lib.nasm_ASFLAGS = -f obj
|
---|
80 | TEMPLATE_usr.lib.nasm_INST = usr/lib/
|
---|
81 |
|
---|
82 |
|
---|