https://github.com/fenderglass/Ragout
Revision 14d5993ba7197d9d6e1d85272b3fdd43369f133c authored by fenderglass on 01 April 2014, 16:08:39 UTC, committed by fenderglass on 01 April 2014, 16:08:39 UTC
1 parent 41974d7
Raw File
Tip revision: 14d5993ba7197d9d6e1d85272b3fdd43369f133c authored by fenderglass on 01 April 2014, 16:08:39 UTC
some backported things
Tip revision: 14d5993
Makefile
OVLP_DIR := ragout/overlap/cpp_impl/
PYTHON_INCLUDE := /usr/include/python2.7

ifneq ($(wildcard /usr/bin/clang),)
	CPP := clang++ -std=c++0x -stdlib=libstdc++
else
	CPP := g++ -std=c++0x
endif

.PHONY: all overlap dependencies clean

export PYTHON_INCLUDE
export CPP

all: overlap dependencies

overlap:
	make -C ${OVLP_DIR}

dependencies:
	scripts/install-deps.py

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