-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 58f6718
Showing
20 changed files
with
15,891 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Oops, something went wrong.