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:
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;
|
||||
Reference in New Issue
Block a user