From 166b61418571de74d590f3c038f66934d0abefce Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sat, 17 Nov 2012 19:18:30 +0100 Subject: [PATCH] Renamed the log for the tests --- tests/Makefile | 8 ++++---- tests/project.conf | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 2b4609c..5263503 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,4 +1,4 @@ -TARGETS = string tests.txt +TARGETS = string tests.log PREFIX = /usr/local DESTDIR = BINDIR = $(PREFIX)/bin @@ -25,14 +25,14 @@ string_LDFLAGS = $(LDFLAGSF) $(LDFLAGS) string: $(string_OBJS) $(CC) -o string $(string_OBJS) $(string_LDFLAGS) -tests.txt: string - ./tests.sh -P "$(PREFIX)" -- "tests.txt" +tests.log: string + ./tests.sh -P "$(PREFIX)" -- "tests.log" string.o: string.c ../src/string.c $(CC) $(string_CFLAGS) -c string.c clean: - $(RM) -- $(string_OBJS) $(tests.txt_OBJS) + $(RM) -- $(string_OBJS) $(tests.log_OBJS) distclean: clean $(RM) -- $(TARGETS) diff --git a/tests/project.conf b/tests/project.conf index 30f4d3b..9e3c3be 100644 --- a/tests/project.conf +++ b/tests/project.conf @@ -1,4 +1,4 @@ -targets=string,tests.txt +targets=string,tests.log cppflags_force=-I ../include cflags_force=-W cflags=-Wall -g -O2 @@ -13,7 +13,7 @@ sources=string.c [string.c] depends=../src/string.c -[tests.txt] +[tests.log] type=script script=./tests.sh depends=string