diff options
author | Pjotr Prins | 2017-08-27 08:57:15 +0200 |
---|---|---|
committer | GitHub | 2017-08-27 08:57:15 +0200 |
commit | 523275386b5644a20be6a309d54d9497029462db (patch) | |
tree | ee7fe2693b3174328e46a22454edeb9e64cfc021 /Makefile | |
parent | 2554242d10b9a7b58bd6c7df82a10e747b6cc0eb (diff) | |
parent | a1984edf45653c46ff430de3958449459532cb6f (diff) | |
download | pangemma-523275386b5644a20be6a309d54d9497029462db.tar.gz |
Merge pull request #79 from genenetwork/issue78
Issue78
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |