4 SETUP
=$(PYTHON
) setup.py
9 @echo
"$(NAME) – A polyhedral library based on ISL"
11 @echo
"Makefile usage:"
12 @echo
" make build build the extension modules"
13 @echo
" make test run the test suite"
14 @echo
" make doc generate the documentation"
15 @echo
" make view_doc open the documentation index"
16 @echo
" make clean remove the generated files"
20 $(SETUP
) build_ext
--inplace
24 $(PYTHON
) -m unittest
-v
32 xdg-open doc
/_build
/html
/index.html
>/dev
/null
2>&1
36 $(RM
) build
dist MANIFEST venv
$(NAME
).egg-info
$(NAME
)/_islhelper.
*.so
37 find .
-name __pycache__ | xargs
$(RM
)