https://github.com/mkauers/ore_algebra
Raw File
Tip revision: 90c07d38cbf440b5639ada30edc146acbddfa7e1 authored by mkauers on 25 March 2024, 07:21:35 UTC
Merge pull request #85 from fchapoton/gen_series_cleanup
Tip revision: 90c07d3
Makefile
.PHONY: build install test testlong

build:
	sage -python setup.py build_ext --inplace

install:
	sage -pip install --upgrade --no-index .

test: build
	PYTHONPATH=src sage -tp --force-lib src

testlong: build
	PYTHONPATH=src sage -tp --long --warn-long 2 --force-lib src
back to top