aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPjotr Prins2017-08-22 09:49:14 +0000
committerPjotr Prins2017-08-26 06:28:33 +0000
commit43dc1c9519aac4924d1174f265fdcac7b7791f8e (patch)
treefdb770909eb3467081038bd909da832851ba63dc
parent2554242d10b9a7b58bd6c7df82a10e747b6cc0eb (diff)
downloadpangemma-43dc1c9519aac4924d1174f265fdcac7b7791f8e.tar.gz
Rename unittests binary to unittests-gemma
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 95f7e65..a7e7adf 100644
--- a/Makefile
+++ b/Makefile
@@ -120,8 +120,8 @@ $(OBJS) : $(HDR)
.SUFFIXES : .cpp .c .o $(SUFFIXES)
unittests: all contrib/catch-1.9.7/catch.hpp $(TEST_SRC_DIR)/unittests-main.o $(TEST_SRC_DIR)/unittests-math.o
- $(CPP) $(CPPFLAGS) $(TEST_SRC_DIR)/unittests-main.o $(TEST_SRC_DIR)/unittests-math.o $(filter-out $(SRC_DIR)/main.o, $(OBJS)) $(LIBS) -o ./bin/unittests
- ./bin/unittests
+ $(CPP) $(CPPFLAGS) $(TEST_SRC_DIR)/unittests-main.o $(TEST_SRC_DIR)/unittests-math.o $(filter-out $(SRC_DIR)/main.o, $(OBJS)) $(LIBS) -o ./bin/unittests-gemma
+ ./bin/unittests-gemma
fast-check: all unittests
rm -vf test/output/*
@@ -140,7 +140,7 @@ clean:
rm -vf $(SRC_DIR)/*~
rm -vf $(TEST_SRC_DIR)/*.o
rm -vf $(OUTPUT)
- rm -vf ./bin/unittests
+ rm -vf ./bin/unittests-gemma
DIST_COMMON = COPYING.txt README.txt Makefile
DIST_SUBDIRS = src doc example bin