We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ef03c commit e1cb9bcCopy full SHA for e1cb9bc
src/po/Makefile
@@ -1,13 +1,16 @@
1
MASTER_PO = ja.po
2
-TEST_TARGETS = ja.mo \
3
- ja.euc-jp.mo \
4
- ja.sjis.mo
+MOFILES = ja.mo \
+ ja.euc-jp.mo \
+ ja.sjis.mo
5
+CHECKFILES = ja.ck \
6
+ ja.euc-jp.ck \
7
+ ja.sjis.ck
8
9
MSGFMT = OLD_PO_FILE_INPUT=yes msgfmt
10
-.SUFFIXES: .po .mo
11
+.SUFFIXES: .po .mo .ck
12
-test: $(TEST_TARGETS)
13
+test: $(MOFILES) $(CHECKFILES)
14
15
update: ja.sjis.po ja.euc-jp.po
16
@@ -41,7 +44,7 @@ merge-force:
41
44
clean:
42
45
rm -f sjiscorr sjiscorr.exe
43
46
rm -f ja.sjis.po ja.euc-jp.po
- rm -f *.mo
47
+ rm -f *.mo *.ck
48
49
#ja.po: vim.pot
50
# rm -f [email protected]
@@ -50,3 +53,7 @@ clean:
53
51
54
.po.mo:
52
55
$(MSGFMT) -v -o $@ $<
56
+
57
+.po.ck:
58
+ vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq $<
59
+ touch $@
0 commit comments