Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JaroSant committed Oct 5, 2022
0 parents commit 58f6718
Show file tree
Hide file tree
Showing 20 changed files with 15,891 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
684 changes: 684 additions & 0 deletions LICENCE

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
CC := g++
CFLAGS := -Wall -Wextra -std=c++11 -O3 # -g
LDFLAGS := -I/home/ubuntu/Desktop/boost_1_78_0 -I/home/ubuntu/Desktop/EWF /usr/local/lib/libconfig++.a

#Make sure LDFLAGS points towards the locations where:

# 1. your boost library resides(e.g.'/home/ubuntu/Desktop/boost_1_78_0')
# 2. the source files for the program reside(e.g.'/home/ubuntu/Desktop/EWF')
# 3. the library libconfig ++.a resides(e.g.'/usr/local/lib/libconfig++.a')

PROGRAMS := main

all: $(PROGRAMS)

main: main.cpp WrightFisher.cpp myHelpers.cpp Polynomial.cpp PolynomialRootFinder.cpp
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)

clean: rm -f *.o $(PROGRAMS)
Loading

0 comments on commit 58f6718

Please sign in to comment.