diff options
author | David Wührer <def@gmx.at> | 2025-09-14 12:12:33 +0200 |
---|---|---|
committer | David Wührer <def@gmx.at> | 2025-09-14 12:12:33 +0200 |
commit | e515413d42d4c4f008b591d000dab216a201d058 (patch) | |
tree | f3fd7b693df672f5c6dff43fe706ad5346fcad43 | |
parent | b8659a7acbcf7f7c0ba5f6bf4b3e8375e45bfc29 (diff) |
-rwxr-xr-x | Makefile | 6 | ||||
-rwxr-xr-x | test.sh | 7 |
2 files changed, 5 insertions, 8 deletions
@@ -8,4 +8,8 @@ all: english2uryuomoco uryuomoco2english clean: rm -rf english2uryuomoco uryuomoco2english -.PHONY: all clean +test: english2uryuomoco uryuomoco2english + uryuomoco2english < uryuomoco | diff - english + english2uryuomoco < english | diff - uryuomoco + +.PHONY: all test clean diff --git a/test.sh b/test.sh deleted file mode 100755 index 4f1fa36..0000000 --- a/test.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -wd=$(dirname "$0") - -"$wd"/uryuomoco2english < "$wd"/uryuomoco | diff - "$wd"/english && -"$wd"/english2uryuomoco < "$wd"/english | diff - "$wd"/uryuomoco - |