Renamed grc to grc65 to avoid name conflicts with another software named grc.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4875 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "grc.h"
|
||||
#include "grc65.h"
|
||||
|
||||
/* common stuff */
|
||||
#include "fname.h"
|
||||
@@ -163,7 +163,7 @@ void printVHeader (void) {
|
||||
"\n#\tDO NOT EDIT! Any changes will be lost!\n#"
|
||||
"\n#\tEdit proper resource file instead\n#"
|
||||
"\n#\tLook at end of this file to find commandline that must be used\n"
|
||||
"#\tto invoke ld65 and grc (as VLIR linker)\n#"
|
||||
"#\tto invoke ld65 and grc65 (as VLIR linker)\n#"
|
||||
"\n#\n\n");
|
||||
}
|
||||
|
||||
@@ -597,7 +597,7 @@ struct vlirentry vlirtable[127];
|
||||
|
||||
/* now put usage info */
|
||||
fprintf(outputVFile,"\n# ld65 -o output.cvt -C %s file1.o file2.o ...",outputVName);
|
||||
fprintf(outputVFile,"\n# grc -vlir outputname %s",headname);
|
||||
fprintf(outputVFile,"\n# grc65 -vlir outputname %s",headname);
|
||||
for (i=1;i<=numchains;i++) {
|
||||
fprintf(outputVFile," %s",vlirtable[i].chainname);
|
||||
}
|
||||
@@ -5,7 +5,7 @@
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
# The executable to build
|
||||
EXE = grc
|
||||
EXE = grc65
|
||||
|
||||
COMMON = ../common
|
||||
|
||||
@@ -20,7 +20,7 @@ EBIND = emxbind
|
||||
# -----------------------------------------------------------------------------
|
||||
# List of all object files
|
||||
|
||||
OBJS = grc.o
|
||||
OBJS = grc65.o
|
||||
|
||||
LIBS = $(COMMON)/common.a
|
||||
|
||||
@@ -54,5 +54,5 @@ zap: clean
|
||||
depend dep: $(OBJS:.o=.c)
|
||||
@echo "Creating dependency information"
|
||||
$(CC) $(CFLAGS) -MM $^ > .depend
|
||||
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ LNKCFG = ld.tmp
|
||||
CFLAGS = -d1 -obeilr -zp4 -5 -zq -w2 -i=..\\common
|
||||
|
||||
# Target files
|
||||
EXE = grc.exe
|
||||
EXE = grc65.exe
|
||||
|
||||
# Create NT programs by default
|
||||
ifndef TARGET
|
||||
@@ -60,7 +60,7 @@ endif
|
||||
# ------------------------------------------------------------------------------
|
||||
# All OBJ files
|
||||
|
||||
OBJS = grc.obj
|
||||
OBJS = grc65.obj
|
||||
|
||||
LIBS = ../common/common.lib
|
||||
|
||||
@@ -9,7 +9,7 @@ PROGS = \
|
||||
cl65 \
|
||||
co65 \
|
||||
da65 \
|
||||
grc \
|
||||
grc65 \
|
||||
ld65 \
|
||||
od65
|
||||
|
||||
|
||||
Reference in New Issue
Block a user