From 1e15d47936a3cdfc2f21fe5a54cc3148b014e443 Mon Sep 17 00:00:00 2001 From: norayr Date: Wed, 7 Dec 2016 19:43:45 +0400 Subject: [PATCH] renamed to vbeautify, added makefile. -- noch --- src/tools/beautifier/makefile | 4 ++++ src/tools/beautifier/{Beautifier.Mod => vbeautify.Mod} | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 src/tools/beautifier/makefile rename src/tools/beautifier/{Beautifier.Mod => vbeautify.Mod} (99%) diff --git a/src/tools/beautifier/makefile b/src/tools/beautifier/makefile new file mode 100644 index 00000000..2108b547 --- /dev/null +++ b/src/tools/beautifier/makefile @@ -0,0 +1,4 @@ +VOC = /opt/voc/bin/voc + +all: + $(VOC) -m vbeautify.Mod diff --git a/src/tools/beautifier/Beautifier.Mod b/src/tools/beautifier/vbeautify.Mod similarity index 99% rename from src/tools/beautifier/Beautifier.Mod rename to src/tools/beautifier/vbeautify.Mod index a949c5e4..6480dbcf 100644 --- a/src/tools/beautifier/Beautifier.Mod +++ b/src/tools/beautifier/vbeautify.Mod @@ -1,4 +1,4 @@ -MODULE Beautifier; +MODULE vbeautify; IMPORT Oberon, Out, Strings, Texts; @@ -755,4 +755,4 @@ BEGIN Texts.OpenBuf(b); InitHashTable; Beautify -END Beautifier. +END vbeautify.