From 3ddc53592473c4021c4b19a455de0b21c3d26b67 Mon Sep 17 00:00:00 2001 From: DTB Date: Mon, 4 Sep 2023 10:39:03 -0400 Subject: [PATCH] move test.sh to its own folder --- {unicode => testing}/test.sh | 0 unicode/Makefile | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename {unicode => testing}/test.sh (100%) diff --git a/unicode/test.sh b/testing/test.sh similarity index 100% rename from unicode/test.sh rename to testing/test.sh diff --git a/unicode/Makefile b/unicode/Makefile index b192cd9..5e2722b 100644 --- a/unicode/Makefile +++ b/unicode/Makefile @@ -1,5 +1,5 @@ -all: utf - sh test.sh +test: utf + sh ../testing/test.sh utf: utf.o libunicode.o $(CC) -g -o utf libunicode.o utf.o @@ -12,4 +12,4 @@ utf.o: libunicode.h utf.c clean: rm -f *.o utf -.PHONY: all clean +.PHONY: clean test