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:
Oliver Schmidt
2016-03-27 19:09:00 +02:00
parent d2f012e414
commit 8b685763d4
6 changed files with 26 additions and 26 deletions

View File

@@ -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)

View File

@@ -2,7 +2,7 @@
/* */
/* error.c */
/* */
/* Error handling for the chrcvt vector font converter */
/* Error handling for the chrcvt65 vector font converter */
/* */
/* */
/* */

View File

@@ -2,7 +2,7 @@
/* */
/* error.h */
/* */
/* Error handling for the chrcvt vector font converter */
/* Error handling for the chrcvt65 vector font converter */
/* */
/* */
/* */

View File

@@ -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;