Permalink
Browse files

Add -lm?

  • Loading branch information...
greebie committed Mar 21, 2018
1 parent c73ca5e commit 1294453336e86e847274c686b2562664804a7cf8
Showing with 2 additions and 2 deletions.
  1. +2 −2 Makefile
View
@@ -37,10 +37,10 @@ debug: ./src/graphpass.c
test: qp ana run clean
qp: $(TEST_INCLUDE)runner_test_qp.c
gcc $(UNITY_INCLUDE)/unity.c $(TEST_INCLUDE)runner_test_qp.c $(DEPS) $(TEST_INCLUDE)quickrun_test.c $(HELPER_FILES) -L$(IGRAPH_LIB) -ligraph -o qp
gcc $(UNITY_INCLUDE)/unity.c $(TEST_INCLUDE)runner_test_qp.c $(DEPS) $(TEST_INCLUDE)quickrun_test.c $(HELPER_FILES) -L$(IGRAPH_LIB) -ligraph -lm -o qp
ana: $(TEST_INCLUDE)runner_test_ana.c
gcc $(UNITY_INCLUDE)/unity.c $(TEST_INCLUDE)runner_test_ana.c $(DEPS) $(TEST_INCLUDE)analyze_test.c $(HELPER_FILES) -L$(IGRAPH_LIB) -ligraph -o ana
gcc $(UNITY_INCLUDE)/unity.c $(TEST_INCLUDE)runner_test_ana.c $(DEPS) $(TEST_INCLUDE)analyze_test.c $(HELPER_FILES) -L$(IGRAPH_LIB) -ligraph -lm -o ana
run:
- ./ana

0 comments on commit 1294453

Please sign in to comment.