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