From: nishi Date: Wed, 12 Jun 2024 06:01:02 +0000 (+0000) Subject: move vim files X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=f05214ed0ecc09c2eedb365fb6c35cf958fd701f;p=dataworks.git move vim files git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@253 d4a5a174-5a4a-5b4b-b672-37683c10d7d5 --- diff --git a/replace.pl b/Tool/replace.pl similarity index 100% rename from replace.pl rename to Tool/replace.pl diff --git a/dataworks.vim b/Vim/dataworks.vim similarity index 100% rename from dataworks.vim rename to Vim/dataworks.vim diff --git a/common.mk b/common.mk index 888fcf5..58e59fc 100644 --- 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