https://github.com/ZhiGroup/bi-PBWT
Raw File
Tip revision: 5ca3dadac4bca9c44185e116182cd520198dadc2 authored by William Yue on 18 July 2021, 02:28:48 UTC
changed pass by value to reference
Tip revision: 5ca3dad
Makefile
all: PBWT rPBWT

PBWT: PBWT.cpp
	g++ -std=c++17 -Wshadow -Wall -o PBWT PBWT.cpp -O2 -Wno-unused-result

rPBWT: rPBWT.cpp
	g++ -std=c++17 -Wshadow -Wall -o rPBWT rPBWT.cpp -O2 -Wno-unused-result

clean:
	rm -f PBWT rPBWT

.PHONY: all clean 
back to top