Makefile-eetq 370 Bytes
Newer Older
1
eetq_commit := 81e0b14d64088d58ef6acd2c8f3e788d59324407
2
3
4
5
6
7
8

eetq:
    # Clone eetq
	pip install packaging
	git clone https://github.com/NetEase-FuXi/EETQ.git eetq

build-eetq: eetq
9
	cd eetq && git fetch && git checkout $(eetq_commit) && git submodule update --init --recursive
10
11
12
13
	cd eetq && python setup.py build

install-eetq: build-eetq
	cd eetq && python setup.py install