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: default ins path
|
---|
26 | TEMPLATE_usr.bin.doc_INSTFUN = $(3)/usr/doc/$(subst .doc,,$(2))/$(notdir $(1))
|
---|
27 |
|
---|
28 | TEMPLATE_usr.bin.man = /usr/bin/ program manual page
|
---|
29 | # 1: source 2: target 3: default ins path
|
---|
30 | TEMPLATE_usr.bin.man_INSTFUN = $(3)/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/include templates.
|
---|
36 | #
|
---|
37 | TEMPLATE_usr.include = /usr/include/ headers
|
---|
38 | TEMPLATE_usr.include_INST = usr/include/
|
---|
39 |
|
---|
40 | TEMPLATE_usr.include.sys = /usr/include/sys/ headers
|
---|
41 | TEMPLATE_usr.include.sys_INST = usr/include/sys/
|
---|
42 |
|
---|
43 |
|
---|
44 | #
|
---|
45 | # The /usr/lib templates.
|
---|
46 | #
|
---|
47 | TEMPLATE_usr.lib = /usr/bin/ libraries.
|
---|
48 | TEMPLATE_usr.lib_TOOL = GCC3
|
---|
49 | TEMPLATE_usr.lib_TOOL.os2 = GCC3OMF
|
---|
50 | TEMPLATE_usr.lib_INST = usr/lib/
|
---|
51 |
|
---|
52 | TEMPLATE_usr.lib.nasm = /usr/bin/ libraries using nasm as assembler.
|
---|
53 | TEMPLATE_usr.lib.nasm_TOOL = GCC3
|
---|
54 | TEMPLATE_usr.lib.nasm_TOOL.os2 = GCC3OMF
|
---|
55 | TEMPLATE_usr.lib.nasm_ASTOOL = NASM
|
---|
56 | TEMPLATE_usr.lib.nasm_ASTOOL = NASM
|
---|
57 | TEMPLATE_usr.lib.nasm_ASFLAGS = -f obj
|
---|
58 | TEMPLATE_usr.lib.nasm_INST = usr/lib/
|
---|
59 |
|
---|
60 |
|
---|