From 7c688f150455fa4bc548a88af3ed6f8023cc8bc4 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 13 Feb 2008 19:45:04 -0200 Subject: [PATCH] Rename test.d to ctest.d. Signed-off-by: Leandro Lucarella --- Makefile | 12 ++++++------ test.d => ctest.d | 0 2 files changed, 6 insertions(+), 6 deletions(-) rename test.d => ctest.d (100%) diff --git a/Makefile b/Makefile index 7eb4073..ba9b462 100644 --- a/Makefile +++ b/Makefile @@ -9,19 +9,19 @@ DFLAGS += -funittest -fversion=UnitTest # Release #DFLAGS += -frelease -O3 -all: test +all: ctest -test.o: test.d ev/c.d - gdc -c $(DFLAGS) test.d +ctest.o: ctest.d ev/c.d + gdc -c $(DFLAGS) ctest.d ev/c.o: ev/c.d gdc -c -o ev/c.o $(DFLAGS) ev/c.d -test: test.o ev/c.o - gdc -o test -lev $(DFLAGS) test.o ev/c.o +ctest: ctest.o ev/c.o + gdc -o ctest -lev $(DFLAGS) ctest.o ev/c.o clean: - $(RM) -v *.o ev/*.o test + $(RM) -v *.o ev/*.o ctest .PHONY: clean all diff --git a/test.d b/ctest.d similarity index 100% rename from test.d rename to ctest.d -- 2.43.0