Added search paths similar to that of the linker and compiler.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4217 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-09-24 14:49:52 +00:00
parent 6aee0eff04
commit 6da6da78ae
5 changed files with 57 additions and 10 deletions

View File

@@ -267,7 +267,8 @@ Here is a description of all the command line options:
Name a directory which is searched for include files. The option may be
used more than once to specify more than one directory to search. The
current directory is always searched first before considering any
additional directories.
additional directories. See also the section about <ref id="search-paths"
name="search paths">.
<tag><tt>-U, --auto-import</tt></tag>
@@ -299,6 +300,21 @@ Here is a description of all the command line options:
<p>
<sect>Search paths<label id="search-paths"><p>
Include files are searched in the following places:
<enum>
<item>The current directory.
<item>The value of the environment variable <tt/CA65_INC/ if it is defined.
<item>A subdirectory named <tt/asminc/ of the directory defined in the
environment variable <tt/CC65_HOME/, if it is defined.
<item>Any directory added with the <tt/-I/ option on the command line.
</enum>
<sect>Input format<p>
<sect1>Assembler syntax<p>