# Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors.
# All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
#
# SPDX-License-Identifier: BSD-2-Clause
#
# This file is part of CEED:  http://github.com/ceed

clean:
	rm -rf build __pycache__ .pytest_cache *.so

setup:
	$(PYTHON) setup-qfunctions.py build

TEST_OPTS ?= --ceed /cpu/self/ref/serial
test: setup
	$(PYTHON) -m pytest test-*.py $(TEST_OPTS)

.PHONY: clean setup test
