]> Nishi Git Mirror - dataworks.git/commitdiff
move vim files
authornishi <nishi@d4a5a174-5a4a-5b4b-b672-37683c10d7d5>
Wed, 12 Jun 2024 06:01:02 +0000 (06:01 +0000)
committernishi <nishi@d4a5a174-5a4a-5b4b-b672-37683c10d7d5>
Wed, 12 Jun 2024 06:01:02 +0000 (06:01 +0000)
git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@253 d4a5a174-5a4a-5b4b-b672-37683c10d7d5

Tool/replace.pl [moved from replace.pl with 100% similarity]
Vim/dataworks.vim [moved from dataworks.vim with 100% similarity]
common.mk

similarity index 100%
rename from replace.pl
rename to Tool/replace.pl
similarity index 100%
rename from dataworks.vim
rename to Vim/dataworks.vim
index 888fcf57934ab606d6fc3f173bfd755b9642468c..58e59fc125ea04ebe462f14d4233fddb145de1d8 100644 (file)
--- a/common.mk
+++ b/common.mk
@@ -26,7 +26,7 @@ FILES = `find . -name "*.c" -or -name "*.h"`
 replace:
        for i in $(FILES) ./Grammar/dw.y ./Grammar/dw.l; do \
                 echo -n "$$i ... "; \
-                perl replace.pl < $$i > $$i.new; \
+                perl ./Tool/replace.pl < $$i > $$i.new; \
                 mv $$i.new $$i; \
                 echo "done"; \
         done