Makefile-marlin 414 Bytes
Newer Older
1
2
marlin_commit := 2f6d7c10e124b3c5fa29ff8d77d568bd7af3274c

Daniël de Kok's avatar
Daniël de Kok committed
3
4
5
6
7
8
build-marlin:
	if [ ! -d 'marlin' ]; then \
		pip install -U ninja packaging --no-cache-dir && \
		git clone https://github.com/IST-DASLab/marlin.git marlin; \
	fi
	cd marlin  && git fetch && git checkout $(marlin_commit) && python setup.py build
9
10

install-marlin: build-marlin
Daniël de Kok's avatar
Daniël de Kok committed
11
	cd marlin  && git fetch && git checkout $(marlin_commit) && pip install -e .