Skip to content

Commit

Permalink
cleaned up Makefile and added Changelog. Fixed decode.
Browse files Browse the repository at this point in the history
  • Loading branch information
stschiff committed Dec 5, 2022
1 parent 8a00b44 commit e255076
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 58 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v1.1.1: Fixed compiler deprecation and error messages. Also cleaned up the Makefile.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# GSL = /usr/lib/libgsl.a /usr/lib/libgslcblas.a
GSL=/usr/local/lib/libgsl.a /usr/local/lib/libgslcblas.a

all: build/msmc build/decode

build/msmc : model/*.d powell.d brent.d maximization_step.d expectation_step.d msmc.d branchlength.d logger.d
dmd -debug -O ${GSL} -odbuild -ofbuild/msmc $^

Expand All @@ -14,9 +16,6 @@ build/test/msmc : model/*.d powell.d brent.d maximization_step.d expectation_ste
build/decode : model/*.d decode.d branchlength.d
dmd ${GSL} -odbuild -ofbuild/decode $^

build/decodeStates : model/*.d decodeStates.d branchlength.d
dmd ${GSL} -odbuild -ofbuild/decodeStates $^

.PHONY : unittest testcoverage clean

testcoverage : model/*.d unittest.d powell.d brent.d maximization_step.d expectation_step.d amoeba.d logger.d
Expand Down
2 changes: 1 addition & 1 deletion decode.d
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import std.stdio;
import std.getopt;
import std.exception;
import std.c.stdlib;
import core.stdc.stdlib;
import std.algorithm;
import std.parallelism;
import std.range;
Expand Down
54 changes: 0 additions & 54 deletions maximize.d

This file was deleted.

0 comments on commit e255076

Please sign in to comment.