From b54eceb53d1b84f826d717f237118ae286c11822 Mon Sep 17 00:00:00 2001 From: "K.Takata" Date: Tue, 17 Dec 2024 21:21:50 +0900 Subject: [PATCH] tutor: Preparation for tutor1/2 --- Makefile | 3 ++- runtime/tutor/Makefile | 12 ++++++------ runtime/tutor/{tutor => tutor1} | 0 runtime/tutor/{tutor.ja.utf-8 => tutor1.ja.utf-8} | 0 4 files changed, 8 insertions(+), 7 deletions(-) rename runtime/tutor/{tutor => tutor1} (100%) rename runtime/tutor/{tutor.ja.utf-8 => tutor1.ja.utf-8} (100%) diff --git a/Makefile b/Makefile index 541c38b..d3393e0 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,8 @@ import-en-files: "$(VIM_SRC_DIR)"/runtime/doc/vimtutor.1 \ "$(VIM_SRC_DIR)"/runtime/doc/xxd.1 \ runtime/doc/ - cp "$(VIM_SRC_DIR)"/runtime/tutor/tutor runtime/tutor/ + cp "$(VIM_SRC_DIR)"/runtime/tutor/tutor1 runtime/tutor/ + cp "$(VIM_SRC_DIR)"/runtime/tutor/tutor2 runtime/tutor/ cp "$(VIM_SRC_DIR)"/nsis/lang/english.nsi nsis/lang/ # Update Vim source directory. diff --git a/runtime/tutor/Makefile b/runtime/tutor/Makefile index d0ddca7..68b6963 100644 --- a/runtime/tutor/Makefile +++ b/runtime/tutor/Makefile @@ -1,20 +1,20 @@ -MASTER_TUTOR = tutor.ja.utf-8 +MASTER_TUTOR1 = tutor1.ja.utf-8 test: update -update: tutor.ja.sjis tutor.ja.euc +update: tutor1.ja.sjis tutor1.ja.euc -tutor.ja.sjis: $(MASTER_TUTOR) +tutor1.ja.sjis: $(MASTER_TUTOR1) iconv -f utf-8 -t cp932 < $< > $@ -tutor.ja.euc: $(MASTER_TUTOR) +tutor1.ja.euc: $(MASTER_TUTOR1) iconv -f utf-8 -t euc-jp < $< > $@ force: touch @$(MAKE) update -touch: $(MASTER_TUTOR) +touch: $(MASTER_TUTOR1) touch $< clean: - rm -f tutor.ja.sjis tutor.ja.euc + rm -f tutor1.ja.sjis tutor1.ja.euc diff --git a/runtime/tutor/tutor b/runtime/tutor/tutor1 similarity index 100% rename from runtime/tutor/tutor rename to runtime/tutor/tutor1 diff --git a/runtime/tutor/tutor.ja.utf-8 b/runtime/tutor/tutor1.ja.utf-8 similarity index 100% rename from runtime/tutor/tutor.ja.utf-8 rename to runtime/tutor/tutor1.ja.utf-8