]> git.sur5r.net Git - cc65/commitdiff
Revert "Renamed none.lib to no-platform.lib"
authorbauen1 <j2468h@gmail.com>
Tue, 2 Jan 2018 14:32:27 +0000 (15:32 +0100)
committerbauen1 <j2468h@gmail.com>
Tue, 2 Jan 2018 14:32:27 +0000 (15:32 +0100)
This reverts commit 26350714ee3a78771061b77b6d20a472f1e40585.

It breaks the build

doc/customizing.sgml
libsrc/Makefile

index 29c525e00d52090c5ef14f2ae8e3ca25f374fa63..5eb73b64882be5bae8cfaae7e221fbfb7937ad48 100644 (file)
@@ -302,17 +302,16 @@ also forcing a BRK instruction into the CPU.
 The next step in customizing the cc65 toolset is creating a run-time
 library for the targeted hardware.  The recommended way to do this is to
 modify the platform-independent standard library of the cc65 distribution.
-It is named &quot;no-platform.lib&quot; in the lib directory of the
-cc65 distribution.
+It is named &quot;none.lib&quot; in the lib directory of the distribution.
 
-When using &quot;no-platform.lib&quot; we need to supply our own <tt>crt0</tt>
+When using &quot;none.lib&quot; we need to supply our own <tt>crt0</tt>
 module with custom startup code.  This is simply done by first copying the
 the library and giving it a new name, compiling the startup code with ca65,
 and finally using the ar65 archiver to add the module to the new library.
 The steps are shown below:
 
 <tscreen><verb>
-        cp /usr/local/share/cc65/lib/no-platform.lib sbc.lib
+        cp /usr/local/share/cc65/lib/none.lib sbc.lib
         ca65 crt0.s
         ar65 a sbc.lib crt0.o
 </verb></tscreen>
index c742ad0c73931ae1db8aba0195fee8f11bec8e1e..2ac0c78f0d5b7b009cbe1e83aad5059cc15776a0 100644 (file)
@@ -33,7 +33,7 @@ TARGETS = apple2       \
           sim65c02     \
           supervision  \
           telestrat    \
-          no-platform
+          none
 
 DRVTYPES = emd \
            joy \