mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +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 -*- -->
|
||||
|
||||
<article>
|
||||
<title>chrcvt Users Guide
|
||||
<title>chrcvt65 Users Guide
|
||||
<author><url url="mailto:polluks@sdf.lonestar.org" name="Stefan A. Haubenthal">
|
||||
<date>2013-02-10
|
||||
|
||||
<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.
|
||||
</abstract>
|
||||
|
||||
@ -18,7 +18,7 @@ the native format.
|
||||
|
||||
<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
|
||||
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>
|
||||
|
||||
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>
|
||||
@ -35,7 +35,7 @@ The program may be called as follows:
|
||||
|
||||
<tscreen><verb>
|
||||
---------------------------------------------------------------------------
|
||||
Usage: chrcvt [options] file [options] [file]
|
||||
Usage: chrcvt65 [options] file [options] [file]
|
||||
Short options:
|
||||
-h Help (this text)
|
||||
-v Be more verbose
|
||||
@ -80,7 +80,7 @@ in TCH format to a new file.
|
||||
|
||||
Example output for the command
|
||||
<tscreen><verb>
|
||||
chrcvt --verbose LITT.CHR
|
||||
chrcvt65 --verbose LITT.CHR
|
||||
</verb></tscreen>
|
||||
<tscreen><verb>
|
||||
BGI Stroked Font V1.1 - Aug 12, 1991
|
||||
@ -91,7 +91,7 @@ Copyright (c) 1987,1988 Borland International
|
||||
|
||||
<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:
|
||||
|
||||
This software is provided 'as-is', without any expressed or implied
|
@ -18,7 +18,7 @@
|
||||
<tag><htmlurl url="cc65.html" name="cc65.html"></tag>
|
||||
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.
|
||||
|
||||
<tag><htmlurl url="cl65.html" name="cl65.html"></tag>
|
||||
@ -31,7 +31,7 @@
|
||||
Describes the da65 6502/65C02 disassembler.
|
||||
|
||||
<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>
|
||||
Describes the ld65 linker.
|
||||
|
21
src/Makefile
21
src/Makefile
@ -2,16 +2,17 @@ ifneq ($(shell echo),)
|
||||
CMD_EXE = 1
|
||||
endif
|
||||
|
||||
PROGS = ar65 \
|
||||
ca65 \
|
||||
cc65 \
|
||||
cl65 \
|
||||
co65 \
|
||||
da65 \
|
||||
grc65 \
|
||||
ld65 \
|
||||
od65 \
|
||||
sim65 \
|
||||
PROGS = ar65 \
|
||||
ca65 \
|
||||
cc65 \
|
||||
chrcvt65 \
|
||||
cl65 \
|
||||
co65 \
|
||||
da65 \
|
||||
grc65 \
|
||||
ld65 \
|
||||
od65 \
|
||||
sim65 \
|
||||
sp65
|
||||
|
||||
.PHONY: all mostlyclean clean install zip avail unavail bin $(PROGS)
|
||||
|
@ -2,7 +2,7 @@
|
||||
/* */
|
||||
/* 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 handling for the chrcvt vector font converter */
|
||||
/* Error handling for the chrcvt65 vector font converter */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
@ -2,7 +2,7 @@
|
||||
/* */
|
||||
/* 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 "version.h"
|
||||
|
||||
/* chrcvt */
|
||||
/* chrcvt65 */
|
||||
#include "error.h"
|
||||
|
||||
|
||||
@ -219,8 +219,7 @@ static void OptVersion (const char* Opt attribute ((unused)),
|
||||
/* Print the assembler version */
|
||||
{
|
||||
fprintf (stderr,
|
||||
"%s V%s - (C) Copyright 2009, Ullrich von Bassewitz\n",
|
||||
ProgName, GetVersionAsString ());
|
||||
"%s V%s\n", ProgName, GetVersionAsString ());
|
||||
}
|
||||
|
||||
|
||||
@ -482,7 +481,7 @@ int main (int argc, char* argv [])
|
||||
unsigned I;
|
||||
|
||||
/* Initialize the cmdline module */
|
||||
InitCmdLine (&argc, &argv, "chrcvt");
|
||||
InitCmdLine (&argc, &argv, "chrcvt65");
|
||||
|
||||
/* Check the parameters */
|
||||
I = 1;
|
Loading…
x
Reference in New Issue
Block a user