https://github.com/fenderglass/Ragout
Revision 96d75db6483255d9abaf17a7e6e804c9f163afc5 authored by fenderglass on 20 June 2014, 20:32:52 UTC, committed by fenderglass on 20 June 2014, 20:32:52 UTC
1 parent 5a278a3
Raw File
Tip revision: 96d75db6483255d9abaf17a7e6e804c9f163afc5 authored by fenderglass on 20 June 2014, 20:32:52 UTC
small fix
Tip revision: 96d75db
Makefile
OVLP_DIR := ragout/overlap/cpp_impl/
M2S_DIR := ragout/maf2synteny/cpp_impl/
BIN_DIR := $(shell pwd)/lib/

UNAME := $(shell uname -s)
ifneq ($(wildcard /usr/bin/clang),)
	CPP := clang++ -std=c++11

	ifeq ($(UNAME),Darwin) #for macos
		CPP += -stdlib=libc++
	endif
else
	CPP := g++ -std=c++11
endif

export CPP
export BIN_DIR

.PHONY: all overlap dependencies clean maf2synteny

all: overlap maf2synteny

overlap:
	make -C ${OVLP_DIR} all

maf2synteny:
	make -C ${M2S_DIR} all

dependencies:
	scripts/install-sibelia.py

clean:
	make -C ${OVLP_DIR} clean
	make -C ${M2S_DIR} clean
back to top