From 12cfe6190b6fd54cd52917f4f4bc71b7601ee94a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 1 Jun 2002 05:37:18 +0000 Subject: [PATCH] do some file renaming --- tools/qfcc/source/Makefile.am | 6 +++++- tools/qfcc/source/{pr_opcode.c => opcodes.c} | 0 tools/qfcc/source/{pr_comp.c => precache.c} | 0 3 files changed, 5 insertions(+), 1 deletion(-) rename tools/qfcc/source/{pr_opcode.c => opcodes.c} (100%) rename tools/qfcc/source/{pr_comp.c => precache.c} (100%) diff --git a/tools/qfcc/source/Makefile.am b/tools/qfcc/source/Makefile.am index 7c55ecdec..c63f9ccce 100644 --- a/tools/qfcc/source/Makefile.am +++ b/tools/qfcc/source/Makefile.am @@ -37,7 +37,11 @@ YFLAGS = -d bin_PROGRAMS= qfcc -qfcc_SOURCES= cmdlib.c debug.c pr_comp.c pr_def.c pr_imm.c pr_opcode.c qfcc.c qc-parse.y qc-lex.l class.c emit.c expr.c function.c method.c struct.c switch.c type.c +qfcc_SOURCES= \ + class.c cmdlib.c debug.c emit.c expr.c function.c method.c opcodes.c \ + pr_def.c pr_imm.c precache.c qc-lex.l qc-parse.y qfcc.c struct.c switch.c \ + type.c + qfcc_LDADD= $(QFCC_LIBS) qfcc_DEPENDENCIES= $(QFCC_DEPS) EXTRA_DIST= qc-parse.h diff --git a/tools/qfcc/source/pr_opcode.c b/tools/qfcc/source/opcodes.c similarity index 100% rename from tools/qfcc/source/pr_opcode.c rename to tools/qfcc/source/opcodes.c diff --git a/tools/qfcc/source/pr_comp.c b/tools/qfcc/source/precache.c similarity index 100% rename from tools/qfcc/source/pr_comp.c rename to tools/qfcc/source/precache.c