1*9ba83ac0SJeremy L Thompson# Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors. 27b3ff069SJeremy L Thompson# All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 37b3ff069SJeremy L Thompson# 47b3ff069SJeremy L Thompson# SPDX-License-Identifier: BSD-2-Clause 57b3ff069SJeremy L Thompson# 67b3ff069SJeremy L Thompson# This file is part of CEED: http://github.com/ceed 77b3ff069SJeremy L Thompson 87b3ff069SJeremy L ThompsonPYTHON ?= python3 97b3ff069SJeremy L Thompson 107b3ff069SJeremy L Thompsonclean: 117b3ff069SJeremy L Thompson rm -rf build __pycache__ .pytest_cache *.so 127b3ff069SJeremy L Thompson 137b3ff069SJeremy L Thompsonsetup: 147b3ff069SJeremy L Thompson $(PYTHON) setup_qfunctions.py build 157b3ff069SJeremy L Thompson 167b3ff069SJeremy L ThompsonTEST_OPTS ?= --ceed /cpu/self/ref/serial 177b3ff069SJeremy L Thompsontest: setup 187b3ff069SJeremy L Thompson $(PYTHON) -m pytest ex_test.py $(TEST_OPTS) 197b3ff069SJeremy L Thompson 207b3ff069SJeremy L Thompson.PHONY: clean setup test 21