Skip to content

Commit

Permalink
marlin: improve build
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldk authored and Daniël de Kok committed Jun 6, 2024
1 parent 0d96468 commit 5162143
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions server/Makefile-marlin
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
marlin_commit := 2f6d7c10e124b3c5fa29ff8d77d568bd7af3274c

marlin:
# Clone marlin
pip install packaging
git clone https://github.com/IST-DASLab/marlin.git marlin

build-marlin: marlin
cd marlin && git fetch && git checkout $(marlin_commit)
cd marlin && python setup.py build
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

install-marlin: build-marlin
cd marlin && python setup.py install
cd marlin && git fetch && git checkout $(marlin_commit) && pip install -e .

0 comments on commit 5162143

Please sign in to comment.