Skip to content

Commit

Permalink
Merge pull request #30 from Mathics3/add-makefile
Browse files Browse the repository at this point in the history
Add Makefile
  • Loading branch information
TiagoCavalcante committed Sep 30, 2021
2 parents 8318815 + 2d89f22 commit 2766986
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# A GNU Makefile to run various tasks - compatibility for us old-timers.

# Note: This makefile include remake-style target comments.
# These comments before the targets start with #:
# remake --tasks to shows the targets and the comments

PIP ?= pip3

#: default target
all: update install

#: update mathics-core
update:
git submodule init
git submodule update --recursive

#: install mathics-benchmark
install:
$(PIP) install -e .

#: remove the reports and results
clean:
find reports -name "*.png" -delete
find results -name "*.json" -delete

#: initialize venv
venv:
./admin-tools/install-venv.sh

0 comments on commit 2766986

Please sign in to comment.