mirror of
https://github.com/cc65/cc65.git
synced 2025-02-23 18:29:05 +00:00
Renamed chrcvt to chrcvt65 and added it to the build.
The /Makefile presumes that all binaries are are named *65 so chrcvt had to be renamed in order to be added to the build.
This commit is contained in:
parent
d2f012e414
commit
8b685763d4
@ -1,12 +1,12 @@
|
|||||||
<!doctype linuxdoc system> <!-- -*- text-mode -*- -->
|
<!doctype linuxdoc system> <!-- -*- text-mode -*- -->
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
<title>chrcvt Users Guide
|
<title>chrcvt65 Users Guide
|
||||||
<author><url url="mailto:polluks@sdf.lonestar.org" name="Stefan A. Haubenthal">
|
<author><url url="mailto:polluks@sdf.lonestar.org" name="Stefan A. Haubenthal">
|
||||||
<date>2013-02-10
|
<date>2013-02-10
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
chrcvt is the vector font converter. It is able to convert a foreign font into
|
chrcvt65 is the vector font converter. It is able to convert a foreign font into
|
||||||
the native format.
|
the native format.
|
||||||
</abstract>
|
</abstract>
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ the native format.
|
|||||||
|
|
||||||
<sect>Overview<p>
|
<sect>Overview<p>
|
||||||
|
|
||||||
chrcvt is a vector font converter. It is able to convert a "BGI Stroked
|
chrcvt65 is a vector font converter. It is able to convert a "BGI Stroked
|
||||||
Font" to a compact TGI native vector font. See the function <url
|
Font" to a compact TGI native vector font. See the function <url
|
||||||
url="funcref.html#tgi_load_vectorfont" name="tgi_load_vectorfont"> for usage.
|
url="funcref.html#tgi_load_vectorfont" name="tgi_load_vectorfont"> for usage.
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ url="funcref.html#tgi_load_vectorfont" name="tgi_load_vectorfont"> for usage.
|
|||||||
|
|
||||||
<sect>Usage<p>
|
<sect>Usage<p>
|
||||||
|
|
||||||
The chrcvt utility converts the font of one Borland file to its cc65 equivalent.
|
The chrcvt65 utility converts the font of one Borland file to its cc65 equivalent.
|
||||||
|
|
||||||
|
|
||||||
<sect1>Command line option overview<p>
|
<sect1>Command line option overview<p>
|
||||||
@ -35,7 +35,7 @@ The program may be called as follows:
|
|||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
Usage: chrcvt [options] file [options] [file]
|
Usage: chrcvt65 [options] file [options] [file]
|
||||||
Short options:
|
Short options:
|
||||||
-h Help (this text)
|
-h Help (this text)
|
||||||
-v Be more verbose
|
-v Be more verbose
|
||||||
@ -80,7 +80,7 @@ in TCH format to a new file.
|
|||||||
|
|
||||||
Example output for the command
|
Example output for the command
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
chrcvt --verbose LITT.CHR
|
chrcvt65 --verbose LITT.CHR
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
BGI Stroked Font V1.1 - Aug 12, 1991
|
BGI Stroked Font V1.1 - Aug 12, 1991
|
||||||
@ -91,7 +91,7 @@ Copyright (c) 1987,1988 Borland International
|
|||||||
|
|
||||||
<sect>Copyright<p>
|
<sect>Copyright<p>
|
||||||
|
|
||||||
chrcvt is (C) Copyright 2009, Ullrich von Bassewitz. For usage of the
|
chrcvt65 is (C) Copyright 2009, Ullrich von Bassewitz. For usage of the
|
||||||
binaries and/or sources the following conditions apply:
|
binaries and/or sources the following conditions apply:
|
||||||
|
|
||||||
This software is provided 'as-is', without any expressed or implied
|
This software is provided 'as-is', without any expressed or implied
|
@ -18,7 +18,7 @@
|
|||||||
<tag><htmlurl url="cc65.html" name="cc65.html"></tag>
|
<tag><htmlurl url="cc65.html" name="cc65.html"></tag>
|
||||||
Describes the cc65 C compiler.
|
Describes the cc65 C compiler.
|
||||||
|
|
||||||
<tag><htmlurl url="chrcvt.html" name="chrcvt.html"></tag>
|
<tag><htmlurl url="chrcvt65.html" name="chrcvt65.html"></tag>
|
||||||
Describes the vector font converter.
|
Describes the vector font converter.
|
||||||
|
|
||||||
<tag><htmlurl url="cl65.html" name="cl65.html"></tag>
|
<tag><htmlurl url="cl65.html" name="cl65.html"></tag>
|
||||||
@ -31,7 +31,7 @@
|
|||||||
Describes the da65 6502/65C02 disassembler.
|
Describes the da65 6502/65C02 disassembler.
|
||||||
|
|
||||||
<tag><htmlurl url="grc65.html" name="grc65.html"></tag>
|
<tag><htmlurl url="grc65.html" name="grc65.html"></tag>
|
||||||
Describes the GEOS resource compiler (grc65).
|
Describes the GEOS resource compiler.
|
||||||
|
|
||||||
<tag><htmlurl url="ld65.html" name="ld65.html"></tag>
|
<tag><htmlurl url="ld65.html" name="ld65.html"></tag>
|
||||||
Describes the ld65 linker.
|
Describes the ld65 linker.
|
||||||
|
21
src/Makefile
21
src/Makefile
@ -2,16 +2,17 @@ ifneq ($(shell echo),)
|
|||||||
CMD_EXE = 1
|
CMD_EXE = 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PROGS = ar65 \
|
PROGS = ar65 \
|
||||||
ca65 \
|
ca65 \
|
||||||
cc65 \
|
cc65 \
|
||||||
cl65 \
|
chrcvt65 \
|
||||||
co65 \
|
cl65 \
|
||||||
da65 \
|
co65 \
|
||||||
grc65 \
|
da65 \
|
||||||
ld65 \
|
grc65 \
|
||||||
od65 \
|
ld65 \
|
||||||
sim65 \
|
od65 \
|
||||||
|
sim65 \
|
||||||
sp65
|
sp65
|
||||||
|
|
||||||
.PHONY: all mostlyclean clean install zip avail unavail bin $(PROGS)
|
.PHONY: all mostlyclean clean install zip avail unavail bin $(PROGS)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
/* */
|
/* */
|
||||||
/* error.c */
|
/* error.c */
|
||||||
/* */
|
/* */
|
||||||
/* Error handling for the chrcvt vector font converter */
|
/* Error handling for the chrcvt65 vector font converter */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
@ -2,7 +2,7 @@
|
|||||||
/* */
|
/* */
|
||||||
/* error.h */
|
/* error.h */
|
||||||
/* */
|
/* */
|
||||||
/* Error handling for the chrcvt vector font converter */
|
/* Error handling for the chrcvt65 vector font converter */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
@ -2,7 +2,7 @@
|
|||||||
/* */
|
/* */
|
||||||
/* main.c */
|
/* main.c */
|
||||||
/* */
|
/* */
|
||||||
/* Main program of the chrcvt vector font converter */
|
/* Main program of the chrcvt65 vector font converter */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
@ -46,7 +46,7 @@
|
|||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
/* chrcvt */
|
/* chrcvt65 */
|
||||||
#include "error.h"
|
#include "error.h"
|
||||||
|
|
||||||
|
|
||||||
@ -219,8 +219,7 @@ static void OptVersion (const char* Opt attribute ((unused)),
|
|||||||
/* Print the assembler version */
|
/* Print the assembler version */
|
||||||
{
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"%s V%s - (C) Copyright 2009, Ullrich von Bassewitz\n",
|
"%s V%s\n", ProgName, GetVersionAsString ());
|
||||||
ProgName, GetVersionAsString ());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -482,7 +481,7 @@ int main (int argc, char* argv [])
|
|||||||
unsigned I;
|
unsigned I;
|
||||||
|
|
||||||
/* Initialize the cmdline module */
|
/* Initialize the cmdline module */
|
||||||
InitCmdLine (&argc, &argv, "chrcvt");
|
InitCmdLine (&argc, &argv, "chrcvt65");
|
||||||
|
|
||||||
/* Check the parameters */
|
/* Check the parameters */
|
||||||
I = 1;
|
I = 1;
|
Loading…
x
Reference in New Issue
Block a user