Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move math lib linking to end #79

Merged
merged 1 commit into from
Jun 3, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dist_data_DATA = Newickform.h alignment_file.h block_tab_file.h branch_sequences
# gubbins is our top level progra
bin_PROGRAMS = gubbins
gubbins_SOURCES = main.c
gubbins_LDADD=-lm libgubbins.la -lz
gubbins_LDADD=libgubbins.la -lz -lm

# libgubbins.so is our library
lib_LTLIBRARIES = libgubbins.la
Expand All @@ -16,7 +16,7 @@ libgubbins_la_LDFLAGS= -version-info 0:1
#libPyGubbins_la_SOURCES = PyGubbins.cpp
#libPyGubbins_la_LDFLAGS = -version-info 0:1
#libPyGubbins_la_CPPFLAGS = $(PYTHON_CPPFLAGS)
#libPyGubbins_la_LIBADD = $(PYTHON_LDFLAGS) -lboost_python -lm libgubbins.la -lz
#libPyGubbins_la_LIBADD = $(PYTHON_LDFLAGS) -lboost_python libgubbins.la -lz -lm


# "make check" target
Expand All @@ -32,4 +32,4 @@ run_all_tests_SOURCES = \
../tests/helper_methods.c \
../tests/run_all_tests.c
run_all_tests_CFLAGS = -I../tests
run_all_tests_LDADD = -lm -lcheck libgubbins.la -lz
run_all_tests_LDADD = -lcheck libgubbins.la -lz -lm