Changeset 885
- Timestamp:
- Dec 8, 2003, 6:42:10 AM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/build.txt
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r884 r885 83 83 of variables that control the build process: 84 84 85 .INSDIR - (optional) directory inside the installation tree for targets. 85 .INSDIR - (optional) directory inside the installation tree for targets. 86 86 For example, it could be 'bin/' (without quotes), or 'lib/st/' and so on. 87 87 This variable is NOT cleared after the inclusion of builders since … … 100 100 101 101 .TARGET - The name of target (e.g. executable or library file name without dir). 102 For example: .TARGET =myfile.exe102 For example: .TARGET := myfile.exe 103 103 104 104 .TKIND - (optional) The kind of target. It can consist of up to three … … 106 106 if not defined defaults to omf), the second can be 'prof' to build in 107 107 profiling mode. 108 Example: .TKIND=omf prof 108 Example: .TKIND := omf prof 109 110 .TKVAR - (optional) The variant of target. This is handy if one need to build 111 the same sources several times with different flags. 112 Exampel: .TKVAR := tcpipv4 109 113 110 114 .TDEP - Dependencies for target (not built from a source file). For example, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/comend.smak
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r884 r885 15 15 .TDEP := 16 16 .IMPS := 17 .TKVAR := 17 18 endif 18 19 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/common.smak
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r884 r885 27 27 endif # neq ($(findstring prof,$(.TKIND)),) 28 28 .TKIND := $(.tmp) 29 ifdef .TKVAR 30 .TKIND.DIR := $(subst $(SPACE),-,$(.TKIND))/$(.TKVAR)/ 31 else 29 32 .TKIND.DIR := $(subst $(SPACE),-,$(.TKIND))/ 33 endif 30 34 .DIRS := 31 35 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.