Skip to content

Commit b54eceb

Browse files
committed
tutor: Preparation for tutor1/2
1 parent 498f186 commit b54eceb

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ import-en-files:
2323
"$(VIM_SRC_DIR)"/runtime/doc/vimtutor.1 \
2424
"$(VIM_SRC_DIR)"/runtime/doc/xxd.1 \
2525
runtime/doc/
26-
cp "$(VIM_SRC_DIR)"/runtime/tutor/tutor runtime/tutor/
26+
cp "$(VIM_SRC_DIR)"/runtime/tutor/tutor1 runtime/tutor/
27+
cp "$(VIM_SRC_DIR)"/runtime/tutor/tutor2 runtime/tutor/
2728
cp "$(VIM_SRC_DIR)"/nsis/lang/english.nsi nsis/lang/
2829

2930
# Update Vim source directory.

runtime/tutor/Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
MASTER_TUTOR = tutor.ja.utf-8
1+
MASTER_TUTOR1 = tutor1.ja.utf-8
22

33
test: update
44

5-
update: tutor.ja.sjis tutor.ja.euc
5+
update: tutor1.ja.sjis tutor1.ja.euc
66

7-
tutor.ja.sjis: $(MASTER_TUTOR)
7+
tutor1.ja.sjis: $(MASTER_TUTOR1)
88
iconv -f utf-8 -t cp932 < $< > $@
99

10-
tutor.ja.euc: $(MASTER_TUTOR)
10+
tutor1.ja.euc: $(MASTER_TUTOR1)
1111
iconv -f utf-8 -t euc-jp < $< > $@
1212

1313
force: touch
1414
@$(MAKE) update
1515

16-
touch: $(MASTER_TUTOR)
16+
touch: $(MASTER_TUTOR1)
1717
touch $<
1818

1919
clean:
20-
rm -f tutor.ja.sjis tutor.ja.euc
20+
rm -f tutor1.ja.sjis tutor1.ja.euc
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)